Wk-notes-12-3-react-function-memo
React 16.6 pure optimization
Pure Functional Component
Simply use React.memo(FUNCTIONAL_COMPONENT)
React.PureComponent
is silverReact.memo(...)
is golden.React.PureComponent
optimizes re-rendring in ES6 class componentsReact.memo(...)
optimizes re-rendring in functional components
Last updated
Was this helpful?