react-day-picker
Version:
Customizable Date Picker for React
12 lines • 342 B
JavaScript
import React from "react";
/**
* Render a table cell displaying the number of the week.
*
* @group Components
* @see https://daypicker.dev/guides/custom-components
*/
export function WeekNumber(props) {
const { week, ...thProps } = props;
return React.createElement("th", { ...thProps });
}
//# sourceMappingURL=WeekNumber.js.map