mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 16:16:55 +00:00
16 lines
353 B
Svelte
16 lines
353 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">
|
|
<div class="flex-grow">
|
|
<AdaptiveDiv class="h-full">
|
|
{@render children()}
|
|
</AdaptiveDiv>
|
|
</div>
|
|
<BottomBar />
|
|
</div>
|