react-day-picker
Version:
Customizable Date Picker for React
13 lines • 401 B
JavaScript
import React from "react";
/**
* Render the grid with the weekday header row and the weeks for the given
* month.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function Month(props) {
const { calendarMonth, displayIndex, ...divProps } = props;
return React.createElement("div", { ...divProps }, props.children);
}
//# sourceMappingURL=Month.js.map