react-nice-dates
react-nice-dates copied to clipboard
Disabled days
How can I disable specific days? For example the 1st, 23rd and 25th of a month? Is there any way I can disable specific days using an date array? Thank you
yes, check modifiers docs https://reactnicedates.hernansartorio.com/#api-reference something like this will work
modifiers={{
disabled: (date: Date) => [1, 23, 25].includes(date.getDate()),
}}