UNPKG

react-day-picker

Version:

Customizable Date Picker for React

13 lines 305 B
/** * 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; } } //# sourceMappingURL=CalendarMonth.js.map