doeit/src/routes/(auth)/+layout.svelte
Mohamad.Elsena 442e503526 weeee💃
2025-04-07 17:04:04 +02:00

12 lines
208 B
Svelte

<script>
import '../../app.css';
import AppShell from '$lib/components/AppShell.svelte';
let { children } = $props();
</script>
<div></div>
<AppShell title="mitlist">
{@render children?.()}
</AppShell>