Problem Statement
What are some techniques to optimize React app performance?
Explanation
Use React.memo, useCallback, useMemo to avoid unnecessary renders. Code-split with React.lazy, lazy-load images, and virtualize long lists with react-window.
Practice Sets
This question appears in the following practice sets: