mirror of
https://github.com/moku-project/Moku.git
synced 2026-06-13 01:09:56 -05:00
6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
import { mount } from "svelte";
|
|
import App from "./App.svelte";
|
|
import "./styles/global.css";
|
|
|
|
mount(App, { target: document.getElementById("app")! });
|