mirror of
https://github.com/pockethost/pockethost.git
synced 2025-11-27 15:53:49 +00:00
8 lines
133 B
Svelte
8 lines
133 B
Svelte
<script lang="ts">
|
|
import { isAuthStateInitialized } from '$util/stores'
|
|
</script>
|
|
|
|
{#if $isAuthStateInitialized}
|
|
<slot />
|
|
{/if}
|