forked from sagnik/Project_Velocity
12 lines
304 B
JavaScript
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 });
|
|
}
|