export interface ErrorStateProps { error?: Error | null; onRetry?: () => void; className?: string; } export function ErrorState({ error, onRetry, className = "" }: ErrorStateProps) { return (
{error.message}