This commit is contained in:
nub31
2026-03-16 21:37:16 +01:00
parent 982c7f839a
commit 199868af38
17 changed files with 2406 additions and 0 deletions

9
src/main.ts Normal file
View File

@@ -0,0 +1,9 @@
import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
const app = mount(App, {
target: document.getElementById('app')!,
})
export default app