React TL;DR – a human filter for most useful React content.
Top 7 Ways to Optimize the Performance of React App
Avoid Large Components Memoize Split Large Bundles Debounce Tree Shake Avoid Unnecessary Remounting Paginate Read the full article
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 can result in a performance boost. ...