
Widgets
<Widget.Loading />
A loading state for a widget.
This is a component meant to be used as a React Suspense
fallback while your widget is loading data.


Was this page helpful?
⌘I
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The legacy app.ts layout is deprecated. New apps use the folder-based layout under src/app/; convert existing apps with the migration guide.
A loading state for a widget.


import {Widget} from "attio/client"
<React.Suspense fallback={<Widget.Loading />}>
<MySuspensefulWidget />
</React.Suspense>
Was this page helpful?