up:: [[React MOC]] tags:: #note/develop #on/computing/programming # React Hooks *Hooks* are special functions that are only available while React is rendering. Every hook's name starts with `use`. For example, `useState` and `useEffect`. Hooks can only be called at the top of a function component. They cannot be used inside conditions, loops, or other nested functions.