diff --git a/Frontend/src/main.jsx b/Frontend/src/main.jsx index 73fc17b..2439a22 100644 --- a/Frontend/src/main.jsx +++ b/Frontend/src/main.jsx @@ -2,9 +2,15 @@ import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import "./index.css"; import App from "./App.jsx"; +import { Provider } from "react-redux"; +import { store } from "./store/store"; -createRoot(document.getElementById("root")).render( +const container = document.getElementById("root"); +const root = createRoot(container); +root.render( - + + + );