Building Custom Hooks in React
January 27, 2022 5 minute read
A hook is a function that allows us to “hook” into React features, such as lifecycle methods and state. React actually has seven pre-defined hooks that we can use in our applications, but did you know that you can easily create your own custom hooks to use across your React application?
Read Post