cargo-spiel/frontend/src/main.ts
2025-05-14 17:35:58 +02:00

9 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