Added wouter for hash-based routing

This commit is contained in:
Kenan Alić
2025-09-23 18:38:43 +02:00
parent 1be1600a1a
commit 0223b48da3
6 changed files with 58 additions and 5 deletions

View File

@@ -3,10 +3,10 @@ import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
/* Route-related */
import Root from "./routes/Root";
import RootRouter from "./routes/RootRouter";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<Root />
<RootRouter />
</StrictMode>,
);