First real commit

This commit is contained in:
zuma 2025-03-12 17:44:13 +01:00
parent 1947b908a6
commit 107d33c908
30 changed files with 2583 additions and 1 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