diff --git a/src/main.jsx b/src/main.jsx index fdce256..b0e32bf 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -1,10 +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( - + + + , );