React.memo
React.memo skips re-renders when props are Object.is-equal: when it helps, when unstable props make it useless, and cost.
- react
- react-memo
React.memo wraps a component so React skips re-rendering it when the new props are shallowly equal to the previous props (Object.is on each prop). It is a performance optimization, not a correctness tool, and not a default costume for every component.
const Row = memo(function Row({ item, onSelect }) {
return (
<button type="button" onClick={() => onSelect(item.id)}>
{item.label}
</button>
);
});
Docs: React.memo, Skipping Re-rendering.
When memo actually helps
Parent re-renders often (high-frequency state: mouse, scroll, typing) and a heavy child receives props that usually stay the same:
function Dashboard({ filter }) {
const [tick, setTick] = useState(0);
// tick updates every second — do not redraw the huge table for free
return (
<>
<clock onClick={() => setTick((t) => t + 1)}>{tick}</clock>
<HeavyTable filter={filter} />
</>
);
}
const HeavyTable = memo(function HeavyTable({ filter }) {
// expensive render
return <Table rows={compute(filter)} />;
});
Without memo, HeavyTable re-renders every tick even if filter is unchanged.
Unstable props destroy memo
// New function every parent render → memo always sees prop change
<Row item={item} onSelect={() => select(item.id)} />
// New object every render
<Chart style={{ color: 'red' }} />
Fixes: stable callbacks via useCallback when they are deps/memo props, lift style objects, or pass primitives. Measure first — useCallback everywhere is cargo cult.
const onSelect = useCallback((id) => {
dispatch({ type: 'select', id });
}, []);
Custom comparison is possible as a second argument to memo, but easy to get wrong and usually unnecessary.
What memo does not do
- Does not deep-compare props.
- Does not block context-driven re-renders when the component reads that context.
- Does not replace fixing state placement or splitting context.
- Does not make a cheap component faster — comparison has a cost.
Children still re-render if their own state or context changes.
memo versus useMemo versus useCallback
| API | Skips |
|---|---|
memo(Component) |
Re-rendering the component when props equal |
useMemo(() => v, deps) |
Recomputing a value |
useCallback(fn, deps) |
Recreating a function reference |
They compose: memoized child + stable callback props.
Interview out-loud
“React.memo shallow-compares props and skips render when they are equal. It helps for expensive pure children under chatty parents. Inline objects and functions defeat it. I profile before wrapping trees in memo, and I fix state colocation first.”
Related on this site
Further reading
Production checklist
Before you ship a change in this area, walk the list out loud:
- What is the source of truth for the data on screen?
- What happens on remount, route change, and Strict Mode double-invoke?
- Which updates are urgent (input) versus deferrable (filter large lists)?
- Did you profile before adding memo, context splits, or virtualization?
- Is there an accessibility path: keyboard, focus, names, and errors?
If you cannot answer those, the API knowledge will not save the interview or the incident.
Edge cases worth rehearsing
Interviewers and production incidents cluster around the same edges: first render versus update, empty and loading states, Strict Mode double setup, concurrent interruptions, and what happens when identity (key, route params, user id) changes mid-edit. Walk one concrete user journey end-to-end — open, edit, navigate away, come back — and say which state survives.
Prefer fixing data flow and ownership before reaching for memoization or micro-optimizations. Prefer event handlers over effects when a user action is the trigger. Prefer deriving values during render over mirroring props into state. Prefer stable list keys from business ids. Measure with the profiler when performance is the claim.
When you cite an API, mention one failure mode: abort on unmount, serializable props across server/client boundaries, focus restoration for dialogs, or cache invalidation after a mutation. Specific beats generic every time.
Related guides
- Accessibility Patterns in ReactPractical React a11y: labels, focus management, keyboard, live regions, and composition patterns that stay accessible.
- Avoid Prop Drilling with CompositionStop threading props through intermediates: children slots, inversion of control, and when context is the right escape hatch.
- Batching State UpdatesHow React 18+ batches setState in events, timeouts, and promises: when updates flush and why double setState still works.
- Children Prop PatternsUsing children and slot props for flexible APIs: wrappers, compound components, and when to prefer explicit props.
- Client Component BoundariesWhere to put use client: push interactivity to leaves, serializable props, and children as server slots.