daisy/web/src/main.ts

9 lines
139 B
TypeScript
Raw Normal View History

2024-10-11 17:05:18 +01:00
import './app.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app')!,
})
export default app