I'm trying to add a Calendar to my website that makes an appoinment and I need to make it, obviously, from today to the future. How can I do that with the Reactstrap component? Can't find on docs.
Importing the Calendar:
import { Input } from "reactstrap";
<Input
type="time"
className="form-control"
id="time-start-input"
value={startTime}
onChange={(e) => {
setTime(e.target.value);
}}
/>
How can I put a minValue to receive dates just after that date?
For example:
minValue={today}
And then, disable the past.
question from:
https://stackoverflow.com/questions/65845835/min-and-max-value-reactstrap-input-type-date-calendar 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…