March 22, 20255 min read
⚛️ Memoization in React
When you use React, you might see your page becoming slow or some components rendering again and again.
#react18#react#tech#useMemo#useCallback#memoization
Read articleComputer Engineer & Senior Frontend Developer 💜
I engineer modern frontend applications. Follow along as I share my coding journey, tutorials, and tech insights.
When you use React, you might see your page becoming slow or some components rendering again and again.
Next.js is a framework for React.js that covers both frontend and backend aspects. It simplifies the development of large-scale React applications.
JavaScript is considered a single-threaded language that can handle only one operation at a time. Synchronous processes wait for each to finish before moving on to the next.