Files
Moku/src/main.ts
T
2026-03-18 23:05:32 -05:00

6 lines
152 B
TypeScript

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