import React from 'react'; import { YearProps } from '../../../types/calendar'; import { Month } from '../Month'; import styles from './Year.module.scss'; export const Year: React.FC = ({ year, dayHeaderStyle, monthDayOfWeekHeaderStyle, monthCutoff, weekendDays, dateRange, onDateSelect, onDateHover, size = 'l', fontProportion = 100, magnify = false }) => { const months = Array.from({ length: 12 }, (_, index) => { const monthDate = new Date(year, index, 1); return ( ); }); return (

{year}

{months}
); };