aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/Shared.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/Shared.ts')
-rw-r--r--frontend/src/app/Shared.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/src/app/Shared.ts b/frontend/src/app/Shared.ts
new file mode 100644
index 00000000..126dc846
--- /dev/null
+++ b/frontend/src/app/Shared.ts
@@ -0,0 +1,7 @@
+class Shared {
+ constructor(
+ public loggedIn: boolean
+ ) { }
+}
+
+export default new Shared(false); \ No newline at end of file