export function ErrorPanel({ message, onRetry }: { message: string; onRetry: () => void }) { return (

Fehler

{message}

) }