jankboard/client/src/main.ts

9 lines
138 B
TypeScript
Raw Normal View History

2024-02-21 14:19:36 -08:00
import './app.css'
import App from './App.svelte'
2024-02-21 13:49:39 -08:00
const app = new App({
2024-02-21 14:19:36 -08:00
target: document.getElementById('app'),
})
2024-02-21 13:49:39 -08:00
2024-02-21 14:19:36 -08:00
export default app