i have an array of dates which i store in a state called "row".
i want to disable these days in react-day-picker
<DayPicker
selectedDays={this.state.selectedDays}
onDayClick={this.handleDayClick}
disabledDays={
[{
before: new Date(),
},]
}
/>
how can i disable these dates in daypicker?