Skip to content

Async Reveal Order

This example demonstrates the native async UI model with SuspenseBoundary and SuspenseList.

  • each panel resolves independently
  • reveal order is coordinated explicitly
  • the authored code stays in JSX instead of dropping into low-level template machinery

What To Notice

  • SuspenseBoundary owns one async region
  • SuspenseList owns reveal coordination across regions
  • keyed(...) is still available when the reset/remount behavior is a template concern
  • this is an advanced async-read example, not the first place to look for the core runtime story

Next