UNPKG

667 BJavaScriptView Raw
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6exports.Month = Month;
7const react_1 = __importDefault(require("react"));
8/**
9 * Render the grid with the weekday header row and the weeks for the given
10 * month.
11 *
12 * @group Components
13 * @see https://daypicker.dev/guides/custom-components
14 */
15function Month(props) {
16 const { calendarMonth, displayIndex, ...divProps } = props;
17 return react_1.default.createElement("div", { ...divProps }, props.children);
18}
19//# sourceMappingURL=Month.js.map
\No newline at end of file