main.jsx (436B) - raw


      1 import React from "react";
      2 import ReactDOM from "react-dom/client";
      3 import { Provider } from "react-redux";
      4 import { store } from "./app/store";
      5 import App from "./App";
      6 import "bootstrap/dist/css/bootstrap.css";
      7 import "bootstrap/dist/js/bootstrap";
      8 
      9 ReactDOM.createRoot(document.getElementById("root")).render(
     10     <React.StrictMode>
     11         <Provider store={store}>
     12             <App />
     13         </Provider>
     14     </React.StrictMode>
     15 );