2025-02-07 13:41:17 +01:00

10 lines
174 B
TypeScript

import './style.css'
import App from './App.svelte'
import { mount } from "svelte";
const app = mount(App, {
target: document.getElementById('app')
})
export default app