import type { FC } from 'react' import type { CalendarProps } from '../types' import { DaysOfWeek } from './days-of-week' import CalendarItem from './item' const Calendar: FC = ({ days, selectedDate, onDateClick, wrapperClassName, }) => { return
{ days.map(day => ) }
} export default Calendar