Frontend & browser·State, data and re-rendering
you wrapped the slow part in a boundary and the rest of the page rendered without waiting for it.
Suspense boundary
Also calledsuspense, loading boundary
A declared point in the tree where a fallback is shown while descendants are still loading, letting the rest of the page render around it. It replaces per-component loading flags with one place that decides what the pending state looks like. Where you place the boundary is a design decision, not a technical one: too high and the whole page flashes, too low and the layout fills in as a series of jumps.