ADVANCED
REACT
CONCEPTS
Everyone should
Know
Higher-Order
Components(HOC)
A function that takes a component and
returns a new component with additional
props or functionality
Render Props
A technique where a components uses a
function as a prop to determine what to
render
Context API with
useContext
Allows sharing state globally without
prop drilling.
useCallback
Memoizes a function to prevent
unecessary re-renders.
useMemo
Memoizes a computed value to optimize
performance
Code splitting with
[Link] & suspense
loads components only when
needed(lazy loading)