I have a requirement to display start and end-date in material UI. The end-date field must not allow users to select before dates from selected start-date. I am using text field type date material UI, but is not working. please help
<TextField
type="date"
defaultValue={moment().format("yyyy-mm-dd")}
onChange={endDate}
InputProps={{
min: "2020-01-04",
}}
/>
question from:https://stackoverflow.com/questions/65602812/textfield-type-date-in-react