Last active
September 28, 2018 09:36
-
-
Save jpgorman/f453e9a813c5d5af87058a34631137b6 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
// my-app.js | |
import {LazyLoadModule} from './LazyLoadModule' | |
const MyApp = () => ( | |
<div className='App'> | |
<h1>Hello</h1> | |
<LazyLoadModule resolve={() => import('./modules/my-module')} /> | |
</div> | |
) | |
ReactDOM.render(<MyApp />, document.getElementById('root')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment