anitrack/frontend/src/main.ts

9 lines
139 B
TypeScript
Raw Normal View History

2024-07-09 10:16:53 -04:00
import './style.css'
import App from './App.svelte'
const app = new App({
target: document.getElementById('app')
})
export default app