What is React.memo?
Performance Optimization
Audio flashcard · 0:11Nortren·
What is React.memo?
0:11
React.memo is a higher-order component that memoizes a functional component. React skips re-rendering the component when its props have not changed, which can improve performance for expensive components that receive the same props often.