| 1 | import { AlertCircle } from "lucide-react"; |
| 2 | |
| 3 | export interface ErrorFallbackProps { |
| 4 | error: Error; |
| 5 | resetError: () => void; |
| 6 | } |
| 7 | const ErrorFallback: React.FC<ErrorFallbackProps> = ({ error, resetError }) => { |
| 8 | return ( |
| 9 | <div className="min-h-screen bg-[#fff0c9] flex items-center justify-center"> |
nothing calls this directly
no outgoing calls
no test coverage detected