React Guideline: State — Avoid unnecessary state. Description: Derive values from existing state when possible. Do: Compute derived values in render. Don't: Store derivable values in state. Good Example: const total = items.reduce(...). Bad Example: const [total, setTotal] = useState(0). Severity: High. Docs: https://react.dev/learn/choosing-the-state-structure.