import React from 'react'; import PropTypes from 'prop-types'; import { getYear } from '@wojtekmaj/date-utils'; import TileGroup from '../TileGroup'; import Month from './Month'; import { tileGroupProps } from '../shared/propTypes'; export default function Months(props) { const { activeStartDate } = props; const start = 0; const end = 11; const year = getYear(activeStartDate); return ( { const date = new Date(); date.setFullYear(year, monthIndex, 1); date.setHours(0, 0, 0, 0); return date; }} dateType="month" end={end} start={start} tile={Month} /> ); } Months.propTypes = { ...tileGroupProps, locale: PropTypes.string, };