mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-14 22:08:45 +00:00
14 lines
322 B
Svelte
14 lines
322 B
Svelte
<script lang="ts">
|
|
import { AdaptiveDiv } from "$lib/components/atoms";
|
|
import BottomBar from "./BottomBar.svelte";
|
|
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<div class="flex h-screen flex-col justify-between">
|
|
<AdaptiveDiv class="w-full flex-grow">
|
|
{@render children()}
|
|
</AdaptiveDiv>
|
|
<BottomBar />
|
|
</div>
|