2

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.

Syn
  • 938
  • 1
  • 10
  • 21

1 Answers1

2

Yes, you just have to provide handler to onMonthChange prop.

<DatePicker
    onMonthChange={console.log}
/>