React Performance Optimization Tips
React Performance Optimization Tips
Performance
Optimization
rajatsaraswat.com/blog
1. Minimizing Re-renders with
React.memo()
React.memo() is a higher-order component that memoizes
the result of a component's rendering.
Large bundle sizes can increase the initial loading time of your
application.
we only wanna make the API calls to the server when the user
finishes typing their word and not on every input change.
7. Content Delivery Network
(CDN)