Daisy UI #14

Merged
BenjaminPalko merged 28 commits from daisy-ui into master 2024-12-19 21:20:21 -05:00
5 changed files with 7 additions and 1 deletions
Showing only changes of commit 04002dbc12 - Show all commits

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">
import Navbar from '$lib/components/Navbar.svelte';
import { Navbar } from '$lib/components/Navigation';
let { children } = $props();
</script>