update the state and component is unmounted code example
Example: react warning can't perform a react state update on an unmounted component
componentWillUnmount() {
// fix Warning: Can't perform a React state update on an unmounted component
this.setState = (state,callback)=>{
return;
};
}