I want to disable dates before today and using a input html "datepicker" in React, how can I make this possible?
<div className="form-group">
<label className="label" htmlFor="date" >Date</label>
<Input
className="form-control" id="date"
type="date"
name="date"
value={user.date}
onChange={(e) => handleUser(e)}
required
/>
</div>