aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
blob: 7b9d006eb184ce0b36cacc06213d3f4f9f7d7dc2 (plain)
1
2
3
4
5
6
7
8
import { mount } from 'svelte'
import App from './app.svelte'

const app = mount(App, {
  target: document.getElementById('app')!,
})

export default app