React·Intermediate·Conceptual·1 min read
How should Suspense boundaries be placed?
Short interview answer
Place them around content that can load and reveal together without hiding already useful UI. Many tiny boundaries create flicker and complexity; one enormous boundary delays everything. Product loading sequences should drive placement.
Key takeaway
Explain the underlying mental model clearly, then support it with a concrete example and its trade-offs.