Managing state at scale
| Command | Description |
|---|---|
useState | Simple per-component state |
useReducer | Complex state transitions |
| Command | Description |
|---|---|
Context API | Low-frequency updates (theme, user) |
Zustand / Jotai | Atomic / Flux state management |
Redux Toolkit | Large-scale app state |
TanStack Query | Server state (cache) |
| Command | Description |
|---|---|
Lifting State Up | Move state to common ancestor |
Prop Drilling | Passing props deeply (avoid) |
Colocation | Keep state close to usage |