about summary refs log tree commit diff stats
path: root/src/index.js
blob: 1da4f5c6e1e664b6ac15a667e2ac0a908f44c266 (plain) (blame)
1
2
3
4
5
6
7
import App from "./App.svelte";

let app = new App({
  target: document.body,
});

export default App;