2023-05-31 08:36:15 +03:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom/client";
|
|
|
|
import { Provider } from "react-redux";
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2023-05-31 08:36:15 +03:00
|
|
|
import App from "./App";
|
|
|
|
import "./index.css";
|
|
|
|
import { store } from "./store/store";
|
2021-05-26 13:35:57 +03:00
|
|
|
|
2023-05-31 08:36:15 +03:00
|
|
|
ReactDOM.createRoot(document.getElementById("root")).render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App />
|
|
|
|
</Provider>
|
|
|
|
);
|