deemix-web-frontend/app/src/main.js

9 lines
120 B
JavaScript
Raw Normal View History

2022-08-18 09:28:58 +02:00
import './app.css'
import App from './App.svelte'
2022-02-23 18:18:13 +01:00
const app = new App({
2022-08-18 09:28:58 +02:00
target: document.body
})
2022-02-23 18:18:13 +01:00
2022-08-18 09:28:58 +02:00
export default app