Chapter 5 · Example 3 · Memoization with useMemo, useCallback and React.memo

Spread props break memoization

A parent spreading a non-memoized data prop through intermediate components breaks the React.memo check on the child below, so it re-renders anyway.

Loading live editor…