BottomBar 구현

This commit is contained in:
static
2025-01-01 23:29:23 +09:00
parent 0c9c07063d
commit cb279402af
4 changed files with 54 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<script lang="ts">
import BottomBar from "./BottomBar.svelte";
let { children } = $props();
</script>
<div class="flex h-full w-full flex-col justify-between">
<div>
{@render children?.()}
</div>
<BottomBar />
</div>