react.memo
Improving Performance in React Functional Components using React.memo()
React.PureComponent is to ES6 class components React.memo(…) is to functional components . . .
Use React.memo() wisely
Use React.memo() when: You want to mimic PureComponent in function components. Your . . .
React: Optimize Components with React.memo, useMemo, and useCallback
With React.Memo, if a component returns the same result given the same props, wrapping it in memo . . .