Files
bigcapital/client/src/components/ErrorBoundary/index.js
Ahmed Bouhuolia 27ec0e91fa refactoring: retrieve resources fields.
fix: issue in create a new custom view.
2020-10-17 15:00:22 +02:00

34 lines
564 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
function ErrorBoundary({
error,
errorInfo,
children
}) {
if (errorInfo) {
return (
<div>
<h2>Something went wrong.</h2>
<details style={{ whiteSpace: 'pre-wrap' }}>
{error && error.toString()}
<br />
{errorInfo.componentStack}
</details>
</div>
);
}
return children;
}
ErrorBoundary.defaultProps = {
children: null,
};
ErrorBoundary.propTypes = {
children: PropTypes.node,
};
export default ErrorBoundary;