How do I get the value of an input type time in reactjs functional component.
Here is an example I am getting.
<input type="time" onChange={(e) => console.log(e)} className="app-time" min="00:00" max="23:59" value={value} />
On console log event is printing but there is no target value on the console.How can I get the value in HH:mm format?