Initial commit

This commit is contained in:
2023-01-28 16:42:44 +01:00
commit 46c7eb35b3
27 changed files with 14014 additions and 0 deletions

8
src/main.ts Normal file
View File

@@ -0,0 +1,8 @@
import "./styles/index.css";
import App from "./App.svelte";
const app = new App({
target: document.getElementById("app"),
});
export default app;