mercury/frontend/src/main.ts

9 lines
141 B
TypeScript
Raw Normal View History

2023-09-03 00:23:48 +02:00
import "./app.css";
import App from "./App.svelte";
const app = new App({
2023-09-03 04:11:56 +02:00
target: document.getElementById("app"),
2023-09-03 00:23:48 +02:00
});
export default app;