Memoize a React component
Memoization is a feature in React. The library compares (in a shallow way) two versions of an object and, if they are the same, does not re-render (or recompile) it, creating an optimization in performance and memory.
The React.memo higher order comp...
buaiscia.hashnode.dev3 min read