import { formatMonthLabel } from '../lib/month'; interface Props { month: string; onPrev: () => void; onNext: () => void; } export function MonthNav({ month, onPrev, onNext }: Props) { return (
{formatMonthLabel(month)}
); }