Articles in this series
Introduction Building forms in React is exciting when you get the hang of it. However, when you're first learning React as a beginner, it can be one...
If you're starting as a developer, one word you'll come across often is "React". You'll see it as part of most developer roadmaps, on job listings,...
What is the useState hook? The useState hook allows you to add state variables to functional components. Using the useState hook, you can do the...
What is the useEffect hook? The useEffect hook handles side effects in React. A side effect happens when you interact with something outside the scope...
Introduction The useContext hook works with the Context API in React. It allows you to consume data across many components in your app. To understand...
What is the useRef hook? The useRef hook is one of the most used hooks in react. It returns an object with a single property called .current. With...