mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 07:08:55 +02:00
11 lines
159 B
Svelte
11 lines
159 B
Svelte
<script lang="ts">
|
|
import '../app.css';
|
|
import Header from './header.svelte';
|
|
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<Header />
|
|
|
|
{@render children()}
|