aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
blob: f6228c9075b2251331ed3b99d5aaef87d05229d1 (plain) (blame)
1
2
3
4
5
import "./style.css";
import { mount } from "svelte";
import App from "./App.svelte";

mount(App, { target: document.getElementById("app") });