This commit is contained in:
csehviktor
2025-07-03 07:28:34 +02:00
parent d44ae76243
commit 6c26f2f43f
12 changed files with 757 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "@/App.tsx";
import "@/index.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);