What does React.memo do?
React.memo is a higher order component that you can use to ensure functional components only re-render when the props change (much like PureComponent for class components).
Displaying posts 1–1 of 1 in total
React.memo is a higher order component that you can use to ensure functional components only re-render when the props change (much like PureComponent for class components).