Quick Answer
React.memo adds comparison overhead on every parent render รขโฌโ it compares all props with Object.is. For cheap components that rarely have prop changes, this comparison costs more than just re-rendering. It also requires stabilizing all props with useCallback/useMemo, adding maintenance burden. Profile first; memoize only confirmed bottlenecks.
Answer
Memo adds comparison overhead. Often re-rendering is cheaper than shallow comparisons.
S
SugharaIQ Editorial Team
Verified Answer
This answer has been peer-reviewed by industry experts holding senior engineering roles to ensure technical accuracy and relevance for modern interview standards.