2024-06-11 18:18:19 +05:30
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
|
import App from "./App.jsx";
|
|
|
|
|
import "./index.css";
|
|
|
|
|
import "bootstrap/dist/css/bootstrap.min.css";
|
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
|
import store from "./redux/store/store";
|
2024-05-23 09:43:09 +05:30
|
|
|
|
2024-06-11 18:18:19 +05:30
|
|
|
ReactDOM.createRoot(document.getElementById("root")).render(
|
2024-05-23 09:43:09 +05:30
|
|
|
<React.StrictMode>
|
2024-06-11 18:18:19 +05:30
|
|
|
<Provider store={store}>
|
|
|
|
|
<App />
|
|
|
|
|
</Provider>
|
|
|
|
|
</React.StrictMode>
|
|
|
|
|
);
|