mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
BottomBar 구현
This commit is contained in:
12
src/routes/(main)/+layout.svelte
Normal file
12
src/routes/(main)/+layout.svelte
Normal 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>
|
||||
Reference in New Issue
Block a user