This repository has been archived on 2024-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
summer-ui/src/main.ts

9 lines
143 B
TypeScript
Raw Normal View History

2022-10-30 16:58:12 +00:00
import "./app.scss";
import App from "./App.svelte";
2022-10-10 10:46:23 +01:00
const app = new App({
2022-10-30 16:58:12 +00:00
target: document.getElementById("app"),
});
2022-10-10 10:46:23 +01:00
2022-10-30 16:58:12 +00:00
export default app;