refactor(frontent): move components and ts to lib folder

This commit is contained in:
2025-12-29 18:38:20 +01:00
parent 54b9e1fc78
commit abf227d15d
30 changed files with 41 additions and 40 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
<script lang="ts">
import '../app.css';
import Notification from '../components/Notification.svelte';
import Notification from '$lib/components/Notification.svelte';
let { children } = $props();
</script>
{@render children()}
<Notification />
<Notification />