Reputation: 1408
I added a flag, but for some reason the window doesn’t close when choosing a date https://www.npmjs.com/package/react-datepicker
<label className="label-block">
<DatePicker
selected={date}
onChange={handleChange}
placeholderText="Выберите день"
minDate={moment().toDate()}
shouldCloseOnSelect={true}
/>
</label>
Upvotes: 2
Views: 1654