Files
flotilla/src/app/components/Toast.svelte
T
2024-08-08 16:32:46 -07:00

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}