schreiben/src/main.ts

9 lines
143 B
TypeScript
Raw Permalink Normal View History

2023-04-18 17:18:15 +00:00
import "./app.css";
import App from "./App.svelte";
2023-03-05 17:10:29 +00:00
const app = new App({
2023-04-18 17:18:15 +00:00
target: document.getElementById("app")!,
});
2023-03-05 17:10:29 +00:00
2023-04-18 17:18:15 +00:00
export default app;