mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-06 00:47:09 +00:00
11 lines
187 B
Svelte
11 lines
187 B
Svelte
<script lang="ts">
|
|
import '../app.css';
|
|
import Notification from '$lib/components/Notification.svelte';
|
|
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
{@render children()}
|
|
|
|
<Notification />
|