What is React hooks API – How to used it?
React Hooks were first introduced in React 16.8, Hooks are functions or reusable functions that let you “hook into” React state and lifecycle features from function components. In React, hooks start with use word, we have hooks like useState, useEffect, useMemo, useContext, useReducer, etc. We can create our own custom hooks and so whenever you start creating […]