Finish space create form

This commit is contained in:
Jon Staab
2024-08-08 16:32:46 -07:00
parent 6c2e5d6e07
commit 028ff71e8f
18 changed files with 258 additions and 17 deletions
+14
View File
@@ -0,0 +1,14 @@
<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}