import React, { Component, ReactNode } from "react"; interface Props { children: ReactNode; } interface State { hasError: boolean; error: Error | null; } export class ErrorBoundary extends Component { public state: State = { hasError: false, error: null, }; public static getDerivedStateFromError(error: Error): State { return { hasError: true, error }; } public componentDidCatch(error: Error): void { console.error("Error caught in boundary:", error); } public render() { if (this.state.hasError) { return (

Something went wrong.

{this.state.error && this.state.error.toString()}
); } return this.props.children; } }