Bhavesh Singhbhaveshsingh.hashnode.dev·Dec 23, 2022Hooks and API’s to optimize your React APPIn this blog, I will share with you how you can make your react app more performant by using some of its given features We will talk about memo ,useMemo, lazy,<Suspense/> memo what is memo? → memo is a HOC that returns the component if the previous p...Discuss·38 readsuseMemo
Ishtjot SinghforGeekyAnts Tech Blogtechblog.geekyants.com·Nov 22, 2022Memoization, useCallback & memo (using them wisely)In this article, we’ll learn how to implement memoization in React Native and touch base with the major topics around it. Focus Points of the Blog: Memoization and its importance. Important concepts related to Pure Component in class and memo in f...Discuss·6 likes·118 readsMemoization
Jugal Pateljugal.hashnode.dev·Jul 15, 20221. Memoizing Component with memoIn order to understand difference between memo, useMemo and useCallback, we will take example of todo-list. Initial Setup you can clone this codesandbox and skip to the problem in our app or create your own create-react-app with typescript and copy f...Discuss·44 readsUnderstading Difference between memo, useMemo and useCallbackReact