v1.0 with SW PWA enabled
This commit is contained in:
10
frontend/node_modules/react-day-picker/src/contexts/DayPicker/labels/labelDay.ts
generated
vendored
Normal file
10
frontend/node_modules/react-day-picker/src/contexts/DayPicker/labels/labelDay.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { format } from 'date-fns';
|
||||
|
||||
import { DayLabel } from 'types/Labels';
|
||||
|
||||
/**
|
||||
* The default ARIA label for the day button.
|
||||
*/
|
||||
export const labelDay: DayLabel = (day, activeModifiers, options): string => {
|
||||
return format(day, 'do MMMM (EEEE)', options);
|
||||
};
|
||||
Reference in New Issue
Block a user