I am currently using the standalone Calendar picker for a project, and am trying to figure out how to load the calendar with no value selected. Current set up for the Calendar picker looks like this:
<MuiPickersUtilsProvider utils={DateFnsUtils}>
<Calendar
date={selectedDate}
classes={{ progressContainer: classes.calendar }}
onChange={handleDateChange}
renderDay={renderDay}
onMonthChange={handleMonthChange}
></Calendar>
</MuiPickersUtilsProvider>
I have attempted to set the value for "date" to null/empty string, but that seems to throw an error for the DateFnsUtils. Any idea how I could restrict the Calendar picker from auto-selecting a date?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…