import React, { ErrorInfo, PropsWithChildren } from 'react'; interface ErrorBoundaryState { hasError: boolean; } class ErrorBoundary extends React.Component, ErrorBoundaryState> { constructor(props: PropsWithChildren<{}>) { super(props); this.state = { hasError: false }; } componentDidCatch(_error: Error, _info: ErrorInfo) { // Display fallback UI this.setState({ hasError: true }); // You can also log the error to an error reporting service //logErrorToMyService(error, info); } render() { if (this.state.hasError) { // You can render any custom fallback UI return

Something went wrong.

; } return this.props.children; } } export default ErrorBoundary;