I am using input textfield in React with type date which stores date in format 2021-07-22T00:00:00.000Z
in MongoDB. I want the data in the edit form so that the date stored comes in edit form and we can again change it from the date picker.
The code for the input field is
<TextField name="purchaseDate" type="date" required variant="outlined" fullWidth value={bookData.purchaseDate} onChange={(e) => setBookData({ ...bookData, purchaseDate : e.target.value })} />