import { Component } from "react"; import type { ReactNode, ErrorInfo } from "react"; import { ErrorDisplay } from "./ErrorDisplay"; interface Props { children: ReactNode; } interface State { hasError: boolean; error: Error | null; } export class ErrorBoundary extends Component { constructor(props: Props) { super(props); this.state = { hasError: false, error: null }; } static getDerivedStateFromError(error: Error): State { return { hasError: true, error }; } componentDidCatch(error: Error, info: ErrorInfo) { console.error("ErrorBoundary caught:", error, info); } render() { if (this.state.hasError && this.state.error) { return (
this.setState({ hasError: false, error: null })} />
); } return this.props.children; } }