A component which renders a text message from chat.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
isMarkdown |
boolean |
✅ | - | Renders text as markdown (default = true) |
text |
string |
✅ | - | Text message |
import { RtkTextMessageView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkTextMessageView />;
}import { RtkTextMessageView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkTextMessageView
isMarkdown={true}
text="example"
/>
);
}