React·Advanced·Conceptual·1 min read
Should one application have one global reducer?
Short interview answer
Not by default. Reducers should follow domain ownership; one giant reducer couples unrelated changes and broadens subscriptions without providing useful invariants.
Key takeaway
Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.