React memo() vs useMemo() vs useCallback()
Think of memoization as caching a value/Component so that it does not need to be recalculated/re-rendered.All of them can improve performance, but let's dive into each one to find out the differences:
memo():
memo() is a Higher Order Component. It wi...
hamidmohamadi.hashnode.dev4 min read