You should use React.memo more!
Using React.memo can give a performance boost in your app by memoizing your functional components’ render. React is pretty fast by default, and in general, y…
Read more »Using React.memo can give a performance boost in your app by memoizing your functional components’ render. React is pretty fast by default, and in general, y…
Read more »In short, React’s useCallback hook is used to wrap functions. It tells React to not re-create a wrapped function when a component re-renders, unless any of the…
Read more »So you’ve got a big client side React App, and you’ve decided to use code splitting to reduce its size on initial page load. Should be ea…
Read more »Let us explore how you can write your own custom react hooks that allows you to share common logic across multiple functional components in react.
Read more »How to build a React SSR app without any tooling or framework.
Read more »React Hooks are awesome, but they are not easy to use every day.
Read more »Friendly tutorials for developers. Focus on React, CSS, Animation, and more!
Read more »They get along very well and don’t serve the same purpose.
Read more »7 most common ways of achieving what is known as “conditional rendering” in React.
Read more »The reason hooks cause developers to struggle is that they look simple, just basic functions, but they are a lot more complex than that. The complex logic is very well hidden in the React core, but understanding a little how they work will help you to use…
Read more »