forked from coracle/flotilla
12 lines
158 B
Svelte
12 lines
158 B
Svelte
<script lang="ts">
|
|
import {sleep} from "@welshman/lib"
|
|
|
|
export let delay = 1
|
|
</script>
|
|
|
|
{#await sleep(delay)}
|
|
<!-- pass -->
|
|
{:then}
|
|
<slot />
|
|
{/await}
|