Documentation Index
Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
Use this file to discover all available pages before exploring further.
Spinner is a full-screen loading spinner for content areas.
Documentation Index
Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
Use this file to discover all available pages before exploring further.
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 PropsWas this page helpful?