1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-21 13:59:36 +02:00
AdventureLog/frontend/src/routes/+layout.svelte

12 lines
221 B
Svelte
Raw Normal View History

2024-07-08 11:44:39 -04:00
<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>