Is there a built in prop that can detect when someone changes the month within the navigation?
I need to highlight some specific dates and want to do that calculation when a user decides to change months.
Is there a built in prop that can detect when someone changes the month within the navigation?
I need to highlight some specific dates and want to do that calculation when a user decides to change months.
Yes, you just have to provide handler to onMonthChange
prop.
<DatePicker
onMonthChange={console.log}
/>