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.
Implementation
Loader API
Common Examples
Basic Usage
Display while waiting for a response:import { Loader } from "@servicetitan/anvil2-ext-atlas";
function LoadingState() {
return <Loader />;
}
Within a Message
Show loading state in an assistant message:import { Loader, AtlasHeader } from "@servicetitan/anvil2-ext-atlas";
function LoadingMessage() {
return (
<div>
<AtlasHeader assistant="Atlas" />
<Loader />
</div>
);
}
Loader Props
The Loader component has no configurable props. It displays an animated three-dot loading indicator.