Prerendered pages

This page is prerendered. Because of this, any suspense content is treated as though the suspense boundary is not there. Fallback states are ignored and the content is inline in the HTML.

This is some sample content that was delayed for 1000ms.

<Suspense>
  <p slot="fallback">Loading...</p>
  <SimpleExample delay={1000} />
</Suspense>
Back to index GitHub