Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Spinner is a full-screen loading spinner for content areas.
import { Spinner } from "@servicetitan/anvil2-ext-atlas"; function ContentSpinner() { return <Spinner />; }
import { Spinner } from "@servicetitan/anvil2-ext-atlas"; function ContentArea({ loading, children }) { if (loading) { return <Spinner />; } return <>{children}</>; }
<Spinner />
Spinner
Was this page helpful?