Spaces:
Runtime error
Runtime error
File size: 549 Bytes
c4b38e4 42052ec 0a3474b c3571d4 058d10c 936176c a5619c2 936176c 39eb06d c6c1fff e657b46 42052ec c6c1fff c3571d4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<script lang="ts">
import IconLoadingLoop from "~icons/line-md/loading-loop";
import "../app.css";
import HfTokenModal from "$lib/components/inference-playground/hf-token-modal.svelte";
interface Props {
children?: import("svelte").Snippet;
}
let { children }: Props = $props();
</script>
<svelte:boundary>
{@render children?.()}
{#snippet pending()}
<p class="abs-center absolute dark:text-white">🤗</p>
<IconLoadingLoop class="abs-center absolute text-6xl dark:text-blue-300" />
{/snippet}
</svelte:boundary>
<HfTokenModal />
|