Initial commit

This commit is contained in:
2026-06-11 17:28:46 +02:00
commit a61f3a9c33
59 changed files with 10789 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import App from "./App.svelte";
import { mount } from "svelte";
const app = mount(App, {
target: document.getElementById("app"),
});
export default app;