diff options
Diffstat (limited to 'frontend/src/app/Shared.ts')
-rw-r--r-- | frontend/src/app/Shared.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/app/Shared.ts b/frontend/src/app/Shared.ts new file mode 100644 index 00000000..0adcd4d6 --- /dev/null +++ b/frontend/src/app/Shared.ts @@ -0,0 +1,8 @@ +class Shared { + constructor( + public loggedIn: boolean, + public username: string = '' + ) { } +} + +export default new Shared(false);
\ No newline at end of file |