mirror of
https://github.com/Djeeberjr/fw-anwesenheit.git
synced 2025-07-05 10:24:19 +00:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
import { mount } from "svelte"
|
|
import "./app.css"
|
|
import App from "./App.svelte"
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById('app')!,
|
|
})
|
|
|
|
export default app
|