Files
echo-nexus/node_modules/react-day-picker/dist/esm/classes/CalendarMonth.js
T

13 lines
264 B
JavaScript

/**
* Represents a month in a calendar year.
*
* A `CalendarMonth` contains the weeks within the month and the date of the
* month.
*/
export class CalendarMonth {
constructor(month, weeks) {
this.date = month;
this.weeks = weeks;
}
}