import { captureException } from './error-reporter' import { ErrorBoundary } from 'react-error-boundary' function errorHandler(error, componentStack) { captureException(error, { extra: { componentStack, }, tags: { handler: 'react-error-boundary', }, }) } function DefaultFallbackComponent() { return <> } function withErrorBoundary(WrappedComponent, FallbackComponent) { function ErrorBoundaryWrapper(props) { return ( ) } ErrorBoundaryWrapper.propTypes = WrappedComponent.propTypes ErrorBoundaryWrapper.displayName = `WithErrorBoundaryWrapper${ WrappedComponent.displayName || WrappedComponent.name || 'Component' }` return ErrorBoundaryWrapper } export default withErrorBoundary