我需要在我的组件中的 BlueprintJS( documentation ) 和 RangePicker 上创建 DateRangePicker,就像在这个屏幕截图中一样。
我安装了所有 npm 包,并按照说明完成所有操作:
import { DateRangePicker } from "@blueprintjs/datetime";
<DateRangePicker
value={[this.state.startDate, this.state.endDate]}
onChange={this.handleDateChange}
/>
但无论如何都有错误:
Cannot read property 'startDate' of null
TypeError: Cannot read property 'startDate' of null
请帮忙,我需要什么来工作 DateRangePicker