aboutsummaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js
index 8a909a1..458c7a8 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,7 +1,8 @@
+import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
-const app = new App({
+const app = mount(App, {
target: document.getElementById('app'),
})