tech/webdev magazine

May 1, 2022

React Batching

Sunday, May 01, 2022 Teklinks

Batching in React describes the internal implementation detail of React which treats multiple state updates as one state update. The benefit: multiple state updates are batched as one state update and therefore trigger only one re-rendering of the component which improves the rendering performance especially for larger React applications.

Full article