"use client"; import React from "react"; import { ErrorCard } from "@/components/ui/error-card"; interface Props { children: React.ReactNode; fallback?: React.ReactNode; } interface State { hasError: boolean; message: string; } export class ErrorBoundary extends React.Component { constructor(props: Props) { super(props); this.state = { hasError: false, message: "" }; } static getDerivedStateFromError(error: Error): State { return { hasError: true, message: error.message }; } componentDidCatch(error: Error, info: React.ErrorInfo) { console.error("[ErrorBoundary]", error, info); } handleRetry = () => { this.setState({ hasError: false, message: "" }); }; render() { if (this.state.hasError) { return ( this.props.fallback ?? ( ) ); } return this.props.children; } }