rn can we pass setstate function in parameter code example
Example: passing function to setstate
//use this when current value of state depends on prevstate value For eg. toggle
this.setState(function(prevState){
return {show: !prevState.showForm}
});