import Months from './YearView/Months.js'; type YearViewProps = React.ComponentProps; /** * Displays a given year. */ export default function YearView(props: YearViewProps): React.ReactElement { function renderMonths() { return ; } return
{renderMonths()}
; }