UNPKG

react-day-picker

Version:

Customizable Date Picker for React

12 lines (11 loc) 304 B
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 }); }