#hooks
Read more stories on Hashnode
Articles with this tag
Introduction This useMemo and useCallback hooks use a programming technique called memoization to optimize performance in React applications. In this...
What is useReducer? The useReducer hook in react is the useState hook. It provides an alternative way of managing state in your components....
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...
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 useEffect hook? The useEffect hook handles side effects in React. A side effect happens when you interact with something outside the scope...
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...