General Rules of Hooks

Table of Contents

General Rules of Hooks

  1. starts with use (both -react and custom hooks)
  2. component must be uppercase
  3. invoke inside function/component body
  4. don’t call hooks conditionally
  5. set functions don’t update state immediately

Links to this note