Initial commit

This commit is contained in:
2026-07-17 10:00:33 +01:00
commit 634809c6ca
16 changed files with 9694 additions and 0 deletions

11
src/main.tsx Normal file
View File

@@ -0,0 +1,11 @@
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./App";
import "./styles.css";
createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>
);