- Does it include useTransition and useDeferredValue?
- Yes — React 18 concurrent features are included. useTransition for non-urgent updates, useDeferredValue for stale-while-revalidate UIs.
- What about the Rules of Hooks?
- Prominent section. The two rules (only call at top level, only call from React functions) with examples of what breaks when you violate them.
- Custom hooks?
- Yes — how to extract and name them, dependencies, and when to split vs merge logic. The most-useful React feature.
- Server Components?
- Brief. RSCs aren't hooks — they're a different runtime. The cheatsheet links to Next.js App Router Basics for RSC patterns.