1 | import React from "react";
|
2 | /**
|
3 | * Render the grid with the weekday header row and the weeks for the given
|
4 | * month.
|
5 | *
|
6 | * @group Components
|
7 | * @see https://daypicker.dev/guides/custom-components
|
8 | */
|
9 | export function Month(props) {
|
10 | const { calendarMonth, displayIndex, ...divProps } = props;
|
11 | return React.createElement("div", { ...divProps }, props.children);
|
12 | }
|
13 | //# sourceMappingURL=Month.js.map |
\ | No newline at end of file |