Created
December 29, 2017 23:04
-
-
Save tech4him1/0f98d8bc7349782f12bf06e35f10c85e 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 {hot} from 'react-hot-loader'; | |
| export default hot(module)(<div>This is a test.</div>); |
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 {render} from 'react-dom'; | |
| import App from './app.js'; | |
| render( | |
| <Provider store={store}> | |
| <Router> | |
| <App/> | |
| </Router> | |
| </Provider>, | |
| document.getElementById('root') | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment