'use client'; import { Button } from '@/components/ui/shared/Button'; interface TodayLoadErrorBannerProps { message: string; retryLabel: string; onRetry: () => void; isRetrying?: boolean; } export function TodayLoadErrorBanner({ message, retryLabel, onRetry, isRetrying = false, }: TodayLoadErrorBannerProps) { return (

{message}

); }