Files
zep/src/main.ts
T
2026-03-31 18:55:57 -04:00

11 lines
196 B
TypeScript

// src/main.ts
import { mount } from "svelte";
import "./index.css";
import App from "./App.svelte";
const app = mount(App, {
target: document.getElementById("root")!,
});
export default app;