GHOSTFRAMES

Fallback Prop

Use a custom placeholder while AutoSkeleton is in the measuring phase.

Interactive Example

Fallback appears before blueprint resolves

fallback

Fallback Demo Card

Primary content that gets measured for skeleton rendering.

Code Example

Pass fallback node to AutoSkeleton

tsx
<AutoSkeleton loading={loading} fallback={<Spinner />}>
  <Card />
</AutoSkeleton>