mirror of
https://github.com/khoaliber/dockhand.git
synced 2026-03-02 21:19:05 +00:00
10 lines
222 B
Svelte
10 lines
222 B
Svelte
<script lang="ts">
|
|
import type { Snippet } from 'svelte';
|
|
|
|
let { children }: { children?: Snippet } = $props();
|
|
</script>
|
|
|
|
<main class="bg-background flex w-full flex-1 flex-col min-w-0">
|
|
{@render children?.()}
|
|
</main>
|