Comment utiliser la valeur de pass à la fonction qui a été appelée onChange dans React

// This will not call handleChange on render cycle 
// insted will call the function on change in the input field
<fieldset onChange={(e) => this.handleChange("tags", e)}>
Vishal