feat: init routes

This commit is contained in:
madkarmaa
2025-11-11 10:46:20 +01:00
parent 1d8ef94325
commit 175368e10a
19 changed files with 115 additions and 16 deletions

4
src/lib/types.ts Normal file
View File

@@ -0,0 +1,4 @@
import type { Snippet } from 'svelte';
export type WithChildren = { children: Snippet<[]> };
export type WithOptionalChildren = Partial<WithChildren>;