Creating custom hooks in React Js
Hooks are used in React to manage states and other features without class components. It can be used to separate the logic from the code to make it simpler and available to reuse across the components. Some commonly used React Hooks are useState, useEffect, useContext which serves different purposes. In… Continue Reading Creating custom hooks in React Js