Files
Project_Velocity/app/node_modules/react-day-picker/dist/esm/components/WeekNumber.js

12 lines
304 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 });
}