Files
calorie-counter/frontend/src/main.ts
2024-11-08 10:36:24 +01:00

9 lines
143 B
TypeScript

import "./style.css";
import App from "./App.svelte";
const app = new App({
target: document.getElementById("app"),
});
export default app;