| title | UserMessage |
|---|---|
| description | A right-aligned user chat bubble that renders plain text, with an optional timestamp. |
UserMessage renders a right-aligned chat bubble for user turns. Content is shown as plain text (no Markdown), with white text on a primary-color background. Useful when building a custom chat UI on top of the headless CopilotChat.
import { UserMessage } from "@copilotkit/react-native/components";import { UserMessage } from "@copilotkit/react-native/components";
<UserMessage content="What's the weather today?" timestamp={new Date()} />;AssistantMessage: the assistant-side counterpart