import type MonthPicker from "./MonthPicker.js";
export default function MonthPickerTemplate(this: MonthPicker) {
return (
{this._monthsInterval.map(months =>
{months.map(month =>
{month.name}
{month.nameInSecType &&
{month.nameInSecType}
}
)}
)}
);
}