aboutsummaryrefslogtreecommitdiffstats
path: root/src/routes/+layout.svelte
blob: 30062edbee3e2000efc8c5aa31dcb8f326e33be2 (plain) (blame)
1
2
3
4
5
6
7
8
<script lang="ts">
	import '../app.postcss';
	import type { LayoutData } from './$types';

	export let data: LayoutData;
</script>

<slot />