diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-14 23:37:29 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-14 23:37:29 +0100 |
commit | 2e62393227d6d7b1c52e82cc8b7c3174206f7687 (patch) | |
tree | b530d6a1e8b73406bd62b1b8043c183367bd294d /frontend/src/app/Shared.ts | |
parent | b93854c0f0f9fe011aab6bdef324d236fd8dadc8 (diff) |
Dodao login i register modale u navbar, promenio neke stranice kada je korisnik ulogovan.
Diffstat (limited to 'frontend/src/app/Shared.ts')
-rw-r--r-- | frontend/src/app/Shared.ts | 7 |
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 |