| 属性 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
groups |
ChatGroup[] |
✅ | - | 参与者 |
iconPack |
IconPack1 |
❌ | defaultIconPack |
图标包 |
selectedGroupId |
string |
✅ | - | 选中的参与者 |
selfUserId |
string |
✅ | - | 自身用户 ID |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
unreadCounts |
Record<string, number> |
✅ | - | 未读计数 |
import { RtkChatSelectorUi } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkChatSelectorUi />;
}import { RtkChatSelectorUi } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkChatSelectorUi
groups={[]}
selectedGroupId="example"
selfUserId="example"
/>
);
}