I have successfully implemented the react js datepicker. Now I want to restrict users below 18 years to not register.
This is my datepicker
<DatePicker
selected={this.state.dob}
onChange={this.dateChange}
className="form-control"
maxDate={new Date()}
/>
Suggest me what to do. Thank You!