React Hooks

EMBED

Sat Mar 11 2023 18:51:36 GMT+0000 (Coordinated Universal Time)

Saved by @bhushan03 #usestate #hook


You must import Hooks from react. Here we are using the useState Hook to keep track of the application state. State generally refers to application data or properties that need to be tracked. Hook Rules There are 3 rules for hooks: Hooks can only be called inside React function components. Hooks can only be called at the top level of a component. Hooks cannot be conditional Note: Hooks will not work in React class components.

https://www.w3schools.com/react/react_hooks.asp