In 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...