How to Memoize Components in React
Using React.memo, useMemo other APIs to limit re-rendering of components
10 min readOct 22, 2019
--
Memoizing: Your first port of call for performance optimisation
Memoizing in React is a performance feature of the framework that aims to speed up the render process of components. The technique is used in a wide…