add proposal

This commit is contained in:
xstraven
2026-03-18 21:28:06 +01:00
parent 42594951f3
commit 2a39d594c7
15 changed files with 2585 additions and 1 deletions

11
src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import "./styles.css";
import { initApp } from "./app";
const container = document.querySelector<HTMLElement>("#app");
if (!container) {
throw new Error("App container not found.");
}
initApp(container);