import React from 'react'; interface ErrorBannerProps { message?: string; onRetry?: () => void; } const ErrorBanner = ({ message, onRetry }: ErrorBannerProps): JSX.Element => (

{message || 'Failed to load data'}

{onRetry && ( )}
); export default ErrorBanner;