在我的react-dateRange选择器中,电话中的响应模式无法正常工作。左上角没有出现先前选择的按钮。
这是我的代码。请解决问题。
<DateRangePicker
startDate={this.state.startDate} // momentPropTypes.momentObj or null,
orientation={HORIZONTAL_ORIENTATION}
startDateId="your_unique_start_date_id" // PropTypes.string.isRequired,
endDate={this.state.endDate} // momentPropTypes.momentObj or null,
endDateId="your_unique_end_date_id" // PropTypes.string.isRequired,
onDatesChange={({ startDate, endDate }) => this.getDataWithDate(startDate, endDate)} // PropTypes.func.isRequired,
focusedInput={this.state.focusedInput} // PropTypes.oneOf([START_DATE, END_DATE]) or null,
onFocusChange={focusedInput => this.setState({ focusedInput })} // PropTypes.func.isRequired,
isOutsideRange={() => false
}
/>