rsnext/client/next-dev.js
Naoyuki Kanezawa 8570d19af6 Handle errors of React lifecycle methods (#661)
* handle errors of lifecycle methods

* handle errors of render method
2017-01-05 09:27:39 -08:00

11 lines
204 B
JavaScript

import 'react-hot-loader/patch'
import patch from './patch-react'
// apply patch first
patch((err) => {
console.error(err)
next.renderError(err)
})
const next = require('./next')
window.next = next