diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-10-25 02:09:25 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-25 02:09:25 -0400 |
| commit | c87b5c53077c02bf21234e24bf976aa7a5f2bac8 (patch) | |
| tree | 9775f4cb462c1e65814c20f479ead8d344a92927 /ui/routes/+layout.svelte | |
| parent | 3a2f37e41681c2b233728c3cbddaea3f9fc74c08 (diff) | |
Take a swing at putting an invite UI in place.
Diffstat (limited to 'ui/routes/+layout.svelte')
| -rw-r--r-- | ui/routes/+layout.svelte | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/routes/+layout.svelte b/ui/routes/+layout.svelte index 7b99d62..fdd3883 100644 --- a/ui/routes/+layout.svelte +++ b/ui/routes/+layout.svelte @@ -4,6 +4,7 @@ import { currentUser } from '$lib/store'; import LogOut from '$lib/components/LogOut.svelte'; + import Invite from '$lib/components/Invite.svelte'; </script> <div id="app"> @@ -12,6 +13,7 @@ <a href="/">understory</a> <svelte:fragment slot="trail"> {#if $currentUser} + <Invite /> <LogOut /> {/if} </svelte:fragment> |
