React.memo() gives us the ability to memoize a React component. Memoization is a general concept which basically means caching the results of some kind of computation for later use. It is an optimization technique which is used quite extensively in the programming world. When memoization is used, there must be a criteria which would dicate when the cached results are no longer valid.

3m read timeFrom dev.to
Post cover image
Table of contents
Why memoize?React.memo() to the rescue
2 Comments

Sort: