whats the right way to invoke a function after setting the state rwact code example
Example: react function called last state
this.setState({
someState: obj
}, () => {
this.afterSetStateFinished();
});
this.setState({
someState: obj
}, () => {
this.afterSetStateFinished();
});