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