1
ReactAdvanced#patterns
A component that renders a fallback while its children are still loading, used for lazy components and data-fetching integrations. It lets you declare loading states structurally instead of with isLoading flags.
<Suspense fallback={<Skeleton />}>
<Profile userId={id} />
</Suspense>