Can you force a React component to rerender without calling setState?

In class components, you can call this.forceUpdate() to force a rerender.

Documentation: https://facebook.github.io/react/docs/component-api.html

In function components, there’s no equivalent of forceUpdate, but you can contrive a way to force updates with the useState hook.

Leave a Comment