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.
UserMessage displays messages sent by the user with a distinctive bubble style.
import { UserMessage } from "@servicetitan/anvil2-ext-atlas"; function UserMessageExample() { return <UserMessage message="Hello, I need help with scheduling." />; }
import { UserMessage } from "@servicetitan/anvil2-ext-atlas"; function UserMessageError() { return ( <UserMessage message="This message failed to send" isError onRetry={() => resendMessage()} /> ); }
<UserMessage message="Hello!" isError={false} onRetry={handleRetry} />
UserMessage
isError
Was this page helpful?