transfer to PC

This commit is contained in:
Henri
2025-11-21 01:58:01 +02:00
parent 679ace976a
commit 7dfb5adda1
322 changed files with 1592 additions and 3021 deletions

9
src/main.js 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