I use the Material-UI pickers library to get the date And I just want to get the date like this 17/07/2021
But I get both the date and the time like this Sat Jul 17 2021 12:21:00
const [getDate, setGetDate] = useState(new Date());
<DatePicker
value={selectedDate}
format="MM/dd/yyyy"
minDate={new Date()}
onChange={handleDateChange}
label="Date"
size="small"
required
fullWidth
inputVariant="outlined"
animateYearScrolling
