9 lines
161 B
JavaScript

import './styles/main.css'
import { App } from './App.js'
const root = document.getElementById('app')
const app = new App(root)
app.mount()
export default app