import React from 'react'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import ReactDOM from 'react-dom'; import 'react-toastify/dist/ReactToastify.css'; import 'modern-normalize/modern-normalize.css'; import './index.css'; import App from './App'; import { store, persistor } from './redux/store'; ReactDOM.render( , document.getElementById('root'), );