mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-06 14:16:41 +00:00
10 lines
167 B
Svelte
10 lines
167 B
Svelte
<script lang="ts">
|
|
import { isAuthStateInitialized } from '$util/stores'
|
|
</script>
|
|
|
|
{#if $isAuthStateInitialized}
|
|
<slot />
|
|
{:else}
|
|
<slot name="loading" />
|
|
{/if}
|