Today we are going to learn about the state in React i.e. Hooks
Why hooks? When to use all this we will cover.
Rules of Hooks
Hooks are JavaScript functions, but they impose two additional rules:
- Only call Hooks at the top level. Donβt call Hooks inside loops, conditions, or nested functions.
- Only call Hooks from React function components.
For tutorial you can refer
Top comments (0)