Essential hooks for building React applications.
| Front | Back | Actions |
|---|---|---|
| useState | A hook that lets you add React state to function components. | |
| useEffect | A hook that lets you perform side effects in function components. | |
| useContext | A hook to pass data through the component tree without having to pass props down manually at every level. |