interface ErrorSectionProps { message: string; onRetry: () => void; } export default function ErrorSection({ message, onRetry }: ErrorSectionProps) { return (
error

ANALYSIS FAILED

{message}

); }