Files
bornetime/frontend/src/main.js
T

9 lines
157 B
JavaScript
Raw Normal View History

2026-07-10 22:42:23 +02:00
import App from './App.svelte';
import { mount } from 'svelte';
const app = mount(App, {
target: document.getElementById('app'),
});
export default app;