lydstyrke/src/routes/+layout.svelte

10 lines
178 B
Svelte
Raw Normal View History

2024-04-21 00:15:50 +00:00
<script>
import "../app.pcss";
</script>
<div class="h-full flex flex-col">
<div class="border border-2 p-1">
<h1>Navbar</h1>
</div>
<slot></slot>
</div>