1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-06-30 20:02:39 +00:00
trezor-wallet/src/support/ErrorBoundary.js
2019-03-04 13:33:02 +01:00

28 lines
613 B
JavaScript

import React, { PureComponent } from 'react';
import PropTypes from 'prop-types';
import RedBox from 'redbox-react';
class ErrorBoundary extends PureComponent {
constructor(props) {
super(props);
this.state = { hasError: false, error: false };
}
componentDidCatch(error) {
this.setState({ hasError: true, error });
}
render() {
if (this.state.hasError) {
return <RedBox error={this.state.error} />;
}
return this.props.children;
}
}
ErrorBoundary.propTypes = {
children: PropTypes.node,
};
export default ErrorBoundary;