summaryrefslogtreecommitdiff
path: root/client/src/main.ts
blob: aa59c8a9af3a238e2f46d4b4c2f06ce7a9b7ba0e (plain)
1
2
3
4
5
6
7
8
9
import { mount } from "svelte";
import App from "./App.svelte";
import "./style.css";

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

export default app