By default, when component's state or props change, component will re-render.
If your render() method depends on some other data, we can tell React that the component needs re-rendering by calling forceUpdate().
component.forceUpdate(callback)
It is recommended to avoid all uses of forceUpdate() and only read from this.props and this.state in render().