How can I disable click on dates in "Selecting multiple dates".
Inside my render,
<DayPicker selectedDays={this.state.selectedDays} onDayClick={this.handleMultiDayClick} disabledDays={{ before: this.state.currentDay }} />
I am able to disable days but if I click on disabled dates then they are also added in the state.
I would appreciate the help.