MCPcopy Create free account
hub / github.com/Acid-OP/DrawDeck / ErrorFallbackProps

Interface ErrorFallbackProps

apps/DrawDeck/components/Errorfallback.tsx:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected