move navbar
This commit is contained in:
parent
291c113ffd
commit
04002dbc12
5 changed files with 7 additions and 1 deletions
3
src/lib/components/Navigation/Navbar/index.ts
Normal file
3
src/lib/components/Navigation/Navbar/index.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import Navbar from './Navbar.svelte';
|
||||
|
||||
export default Navbar;
|
||||
3
src/lib/components/Navigation/index.ts
Normal file
3
src/lib/components/Navigation/index.ts
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
import Navbar from './Navbar';
|
||||
|
||||
export { Navbar };
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import Navbar from '$lib/components/Navbar.svelte';
|
||||
import { Navbar } from '$lib/components/Navigation';
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue