UserMessage

A right-aligned user chat bubble that renders plain text, with an optional timestamp.


Overview

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

import { UserMessage } from "@copilotkit/react-native/components";

Props

Prop

Type

Prop

Type

Prop

Type

Usage

import { UserMessage } from "@copilotkit/react-native/components";

<UserMessage content="What's the weather today?" timestamp={new Date()} />;

Related