progress-tracker-v3/src/index.ts
2025-04-01 01:15:08 +02:00

6 lines
198 B
TypeScript

import { mount } from 'svelte';
import index from './index.svelte';
import './index.css';
const root = document.querySelector<HTMLDivElement>('#root')!;
const app = mount(index, { target: root });