import React from 'react'; import Months from './YearView/Months'; export default function YearView(props) { function renderMonths() { return ( ); } return (
{renderMonths()}
); }