Skip to content

Instantly share code, notes, and snippets.

@Krasnov8953
Created June 4, 2018 17:38
Show Gist options
  • Save Krasnov8953/6ebd516664ced83e8e74c246028570a7 to your computer and use it in GitHub Desktop.
Save Krasnov8953/6ebd516664ced83e8e74c246028570a7 to your computer and use it in GitHub Desktop.
HMR React
if (module.hot && process.env.NODE_ENV !== 'production') {
console.log('HMR enabled')
module.hot.accept('./components/App', () => {
const NextApp = App.default
ReactDOM.render(
<NextApp />,
document.getElementById('root')
)
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment