eact forceupdate code example
Example 1: React best way of forcing component to update
this.forceUpdate();
Example 2: shouldcomponentupdate
shouldComponentUpdate(nextProps, nextState) {
return true;
}
this.forceUpdate();
shouldComponentUpdate(nextProps, nextState) {
return true;
}