UNPKG

340 BJavaScriptView Raw
1import React from "react";
2/**
3 * Render a row in the calendar, with the days and the week number.
4 *
5 * @group Components
6 * @see https://daypicker.dev/guides/custom-components
7 */
8export function Week(props) {
9 const { week, ...trProps } = props;
10 return React.createElement("tr", { ...trProps });
11}
12//# sourceMappingURL=Week.js.map
\No newline at end of file