6 lines
198 B
TypeScript
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 });
|