Created
February 28, 2018 11:05
-
-
Save rohanBagchi/0601cea18d9da3f7fc42fcc7c001fac3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import ReactDOM from 'react-dom'; | |
| import { Provider } from 'react-redux'; | |
| import store from './store'; | |
| import './index.css'; | |
| import './lib/bootstrap.min.css'; | |
| import AppContainer from './AppContainer'; | |
| import registerServiceWorker from './registerServiceWorker'; | |
| ReactDOM.render( | |
| <Provider store={store}> | |
| <AppContainer /> | |
| </Provider>, | |
| document.getElementById('root') | |
| ); | |
| registerServiceWorker(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment