9 lines
151 B
TypeScript
Raw Normal View History

2022-03-11 15:46:11 -08:00
import App from './App.svelte';
import './assets/index.css';
2022-03-11 15:46:11 -08:00
const app = new App({
2022-10-20 22:33:25 +02:00
target: document.getElementById('app')!
2022-03-11 15:46:11 -08:00
});
export default app;