| 属性 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
meeting |
Meeting |
✅ | - | 会议对象 |
privateChatRecipient |
Participant | null |
✅ | - | 选中的私聊接收者;未设置时,将加载公开聊天(所有人)的消息。 |
size |
Size |
✅ | - | 大小 |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
import { RtkChatMessagesUiPaginated } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkChatMessagesUiPaginated />;
}import { RtkChatMessagesUiPaginated } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkChatMessagesUiPaginated
meeting={meeting}
privateChatRecipient={participant | null}
size="md"
/>
);
}