Add frontend main.js entry point

This commit is contained in:
2026-03-07 22:45:06 -06:00
parent ed5c1191c8
commit a05e0ba66a

8
frontend/src/main.js Normal file
View File

@@ -0,0 +1,8 @@
import './app.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app'),
})
export default app