cara menggunakan nilai lulus ke fungsi yang disebut onchange dalam 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