move navbar

This commit is contained in:
Benjamin Palko 2024-12-19 14:53:34 -05:00
parent 291c113ffd
commit 04002dbc12
5 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,3 @@
import Navbar from './Navbar.svelte';
export default Navbar;

View file

@ -0,0 +1,3 @@
import Navbar from './Navbar';
export { Navbar };

View file

@ -1,5 +1,5 @@
<script lang="ts"> <script lang="ts">
import Navbar from '$lib/components/Navbar.svelte'; import { Navbar } from '$lib/components/Navigation';
let { children } = $props(); let { children } = $props();
</script> </script>