initial commit

This commit is contained in:
insects 2025-05-14 17:35:58 +02:00
commit 1cea94ea19
22 changed files with 2780 additions and 0 deletions

9
frontend/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