I have a text field which has the placeholder "Dates From". what I wanna do is to change It's input box type to a date type on the focus event. But
but the below mentioned solution doesn't work with JSX.
<input placeholder="Date" type="text" onFocus="(this.type='date')" id="date">
How to make this thing work on ReactJs or How to achieve the same goal?