React Hooks - Getting Started
An in-depth introduction to Hooks in React

Search for a command to run...

Series
In this series, I will be writing about hooks in React. What they are, why they are important and how to use them. I would also be showing you how to create your own reusable custom hooks.
An in-depth introduction to Hooks in React

Introduction The useCallback hook is a powerful tool in the React developer's toolkit, allowing for the optimization of component rendering and improving the overall performance of your application. In this article, we will explore what the useCallba...

Introduction In React, if you want to use a particular data in multiple components, what you would usually do is create the data in the parent component and pass it as a prop to all the children components that need it. import { useState } from 'reac...

A smarter way to debug custom hooks

In today's fast-paced world, performance is key when it comes to building web applications. React, being one of the most popular JavaScript libraries, offers a powerful set of tools to help developers optimize the performance of their applications. O...
Different things you didn't know about the useEffect hook