Hi team,
how do we change state of react component inside handsontable functions? for example, I would like to change state in following example-
afterCreateRow: function(index, amount){
let newArr = [];
newArr.push(amount);
this.setState( {updatedArray: newArr} );
}
but this is not instance of react component and i cannot call setState(). how do i call setState() here?