mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-28 08:42:58 +00:00
13 lines
260 B
Svelte
13 lines
260 B
Svelte
<script lang='ts'>
|
|
import { highEntropyValues } from '$lib/utils'
|
|
</script>
|
|
|
|
{#if highEntropyValues}
|
|
{#await highEntropyValues then { platform }}
|
|
<slot {platform} />
|
|
{:catch e}
|
|
<slot platform='' />
|
|
{/await}
|
|
{:else}
|
|
<slot platform='' />
|
|
{/if}
|