<ul>
<li id="1" onClick={this.currentvalue}>2</li>
<li id="2" onClick={this.currentvalue}>3</li>
<li id="3" onClick={this.currentvalue}>4</li>
<li id="4" onClick={this.currentvalue}>5</li>
</ul>
In onClick event, I have given a currentValue handler
public currentvalue(e:React."WHICH EVENT I HAVE TO USE HERE"<WHICH HTML
ELEMENT?>)
{
global.console.log(e.target.value)
}
In the handler which event I have to use to get the target value?