UNPKG

create-personal-react-app

Version:
24 lines (21 loc) 776 B
import React from 'react'; import ReactDOM from 'react-dom'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import App from './app'; import history from './history'; import { store, persistor } from './store'; import * as serviceWorker from './serviceWorker'; import './index.scss'; ReactDOM.render( <Provider store={store}> <PersistGate loading={null} persistor={persistor}> <App history={history} /> </PersistGate> </Provider>, document.getElementById('root') ); // If you want your app to work offline and load faster, you can change // unregister() to register() below. Note this comes with some pitfalls. // Learn more about service workers: https://bit.ly/CRA-PWA serviceWorker.unregister();