export interface HeaderProps {
    monthName: string;
    onNextClick: () => void;
    onPrevClick: () => void;
    onClickOnTitle: () => void;
}
