Decky/app/src/main.ts

5 lines
142 B
TypeScript

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