Skip to content

Instantly share code, notes, and snippets.

@mihir0x69
Created July 8, 2017 06:19
Show Gist options
  • Save mihir0x69/cf8a19f22f75fdbf215c4e8723051b1b to your computer and use it in GitHub Desktop.
Save mihir0x69/cf8a19f22f75fdbf215c4e8723051b1b to your computer and use it in GitHub Desktop.
Require.ensure
module.exports = {
getComponent(location, cb) {
require.ensure([], require => {
cb(null, require('./MyComponent.react.js').default)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment