feat: add frontend main entry point

This commit is contained in:
2026-03-07 23:02:42 -06:00
parent cefa32dc93
commit 1b5b803b27

7
frontend/src/main.ts Normal file
View File

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