Files
frontend-svelte/src/main.ts

7 lines
127 B
TypeScript
Raw Normal View History

import { mount } from 'svelte';
import App from './App.svelte';
mount(App, {
target: document.getElementById('app')!,
});