forked from coracle/flotilla
15 lines
305 B
Svelte
15 lines
305 B
Svelte
<script lang="ts">
|
|
import {fly} from "@lib/transition"
|
|
import {toast} from "@app/toast"
|
|
</script>
|
|
|
|
{#if $toast}
|
|
{#key $toast.id}
|
|
<div transition:fly class="toast z-toast">
|
|
<div role="alert" class="alert flex justify-center">
|
|
{$toast.message}
|
|
</div>
|
|
</div>
|
|
{/key}
|
|
{/if}
|