why is it good idea to pass function into setstate 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}
});