This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
comicinfo-editor-v2/src/main.ts
2023-10-11 17:43:28 +02:00

8 lines
145 B
TypeScript

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