Zettelkasten
week02
Rules of React Hooks

#topic

What are the rules of hooks


  • Don't use hooks in regular JavaScript functions, only within React component functions.
  • You can call them within built-in hooks like useEffect or custom hooks.

What you need to know before fetching data

Fetching Data with Hooks