index.tsx 395 Bytes
Newer Older
mayi's avatar
mayi committed
1 2 3 4 5 6 7 8
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import App from "./App";
import "./i18n/configs";
import "antd/dist/antd.css";
import { Provider } from "react-redux";
import store from "./redux/store";
9 10
ReactDOM.render(
  <React.StrictMode>
mayi's avatar
mayi committed
11 12 13 14
    <Provider store={store}>

      <App />
    </Provider>
15
  </React.StrictMode>,
mayi's avatar
mayi committed
16
  document.getElementById("root")
17
);