aboutsummaryrefslogtreecommitdiff
path: root/fe/src/main.ts
blob: ff866d0f756763b65137233dd9754448f7bf3928 (plain)
1
2
3
4
5
6
7
8
import './app.css'
import App from './App.svelte'

const app = new App({
  target: document.getElementById('app') as HTMLElement,
})

export default app