Web / React native Interview questions
What are hooks in React/React-native?
Hooks are the new feature introduced in the React 16.8 version. It allows you to use state and other React features without writing a class. Hooks are the functions which "hook into" React state and lifecycle features from function components.
useState and useEffect are few examples of React hooks.
More Related questions...