mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-21 13:59:36 +02:00
12 lines
221 B
Svelte
12 lines
221 B
Svelte
|
<script>
|
||
|
import Navbar from '$lib/components/Navbar.svelte';
|
||
|
import Toast from '$lib/components/Toast.svelte';
|
||
|
import 'tailwindcss/tailwind.css';
|
||
|
export let data;
|
||
|
</script>
|
||
|
|
||
|
<Navbar {data} />
|
||
|
<Toast />
|
||
|
|
||
|
<slot></slot>
|