12 lines
208 B
Svelte
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>
|