이벤트 핸들러에 추가적인 매개변수를 전달하는것이 일반적임

<button onClick={(e) => this.deleteRow(id, e)}>Delete Row</button>
<button onClick={this.deleteRow.bind(this, id)}>Delete Row</button>

 

+ Recent posts