import * as React from 'react'; import { render } from 'react-dom'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import { configureStore } from '~/redux/store'; import { App } from '~/containers/App'; import '~/styles/main.scss'; const { store, persistor } = configureStore(); render( , document.getElementById('app') );