import { Component } from 'react' export default class ErrorBoundary extends Component { constructor(props) { super(props) this.state = { hasError: false, error: null } } static getDerivedStateFromError(error) { return { hasError: true, error } } componentDidCatch(error, errorInfo) { console.error('ErrorBoundary caught:', error, errorInfo) } render() { if (this.state.hasError) { if (this.props.fallback) { return this.props.fallback } return (
{this.state.error?.message || 'An unexpected error occurred'}