in src/components/ErrorBoundary/index.tsx [32:38]
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
const { onError } = this.props;
if (onError) {
onError(error, errorInfo);
}
this.setState({ error, errorInfo });
}