React ErrorBoundary
File ErrorBoundary.js
.
class ErrorBoundary extends React.Component {
state = { hasError: false };
static getDerivedStateFromError(error) {
return { hasError: true };
}
componentDidCatch(error, info) {
logToErrorLogger(error, info);
}
render() {
if (this.state.hasError) {
return <div>Help, something went wrong.</div>;
}
return this.props.children;
}
}
File MyComponent.js
import ErrorBoundary from './ErrorBoundary';
const ComponentOne = React.lazy(() => import('./ComponentOne'));
function MyComponent() {
return (
<ErrorBoundary>
<React.Suspense fallback={<div>Loading...</div>}>
<ComponentOne/>
</React.Suspense>
</ErrorBoundary>
);
}