Files
scratchbox/web/ui/src/main.js
T
2026-05-31 20:17:49 -05:00

11 lines
161 B
JavaScript

import { mount } from "svelte";
import App from "./App.svelte";
const target = document.getElementById("app");
if (target) {
mount(App, {
target
});
}