mirror of
https://git.witchcraft.systems/scientific-witchery/pds-dash.git
synced 2025-06-08 07:54:05 +10:00
9 lines
173 B
TypeScript
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
|