mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-05 21:56:48 +00:00
11 lines
214 B
Svelte
11 lines
214 B
Svelte
<script lang="ts">
|
|
import { isUserLoggedIn } from '$util/stores'
|
|
import AuthStateGuard from './AuthStateGuard.svelte'
|
|
</script>
|
|
|
|
<AuthStateGuard>
|
|
{#if !$isUserLoggedIn}
|
|
<slot />
|
|
{/if}
|
|
</AuthStateGuard>
|