12 lines
304 B
JavaScript
12 lines
304 B
JavaScript
/**
|
|
* Formats the header for the week number column.
|
|
*
|
|
* @defaultValue An empty string `""`.
|
|
* @returns The formatted week number header as a string.
|
|
* @group Formatters
|
|
* @see https://daypicker.dev/docs/translation#custom-formatters
|
|
*/
|
|
export function formatWeekNumberHeader() {
|
|
return ``;
|
|
}
|