This commit is contained in:
snusxd
2026-02-26 17:24:37 +03:00
commit 15ff9418d7
17 changed files with 1729 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