Web / ReactJS Interview questions
What are Custom hooks in React?
A custom hook enables you to extract some component's logic into a reusable functionality. A custom hook is a Javascript function that starts with use (for example, useLogging, useReduxStore) and that can call other hooks as well.
More Related questions...