[+] Frontend

This commit is contained in:
2025-03-22 23:50:30 -04:00
parent 6a83fe8fae
commit 446d3e8486
14 changed files with 540 additions and 0 deletions
+9
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