-
Notifications
You must be signed in to change notification settings - Fork 798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hot-loader crashes the app #178
Comments
I have the same problem with // transpiled by babel
_createClass(Plugin, [{
key: 'editLabel',
get: function get() {
return this.state.mode === 'view' ? 'Edit' : 'Save';
} |
It would actually help to see the source code, not the generated one. ;-) |
My guess is that you're using getters, and React Hot Loader doesn't support them yet. |
Stay tuned for the next beta release that is going to fix it and drop very soon. |
Can I ask you to check whether |
When I tries to use react-hot-loader, my application fails to load due to null pointer. It seems props were not properly cloned.
// code is transpiled using babel
{
key: 'viewKey',
get: function get() {
return this.props.view;
}
}]);
In our case, this.props. is null.
The text was updated successfully, but these errors were encountered: