feat: add web client frontend with monorepo config.

This commit is contained in:
K
2026-04-28 23:56:23 +05:30
parent 3a0c32ea8f
commit a5cf7bbfda
37 changed files with 5505 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { BrowserRouter } from "react-router-dom";
import "./index.css";
import App from "./App.jsx";
createRoot(document.getElementById("root")).render(
<StrictMode>
<BrowserRouter>
<App />
</BrowserRouter>
</StrictMode>
);