列出所有参与者的组件,能够根据您的权限对每个参与者执行特权操作。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
图标包 |
meeting |
Meeting |
✅ | - | 会议对象 |
participantIds |
string[] |
✅ | - | 参与者 ID 数组 |
selectedParticipantIds |
string[] |
✅ | - | 选定的参与者 |
t |
RtkI18n |
❌ | useLanguage() |
语言 |
import { RtkBreakoutRoomParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkBreakoutRoomParticipants />;
}import { RtkBreakoutRoomParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkBreakoutRoomParticipants
meeting={meeting}
participantIds="example"
selectedParticipantIds="example"
/>
);
}