A component which lists all participants, with ability to run privileged actions on each participant according to your permissions.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
iconPack |
IconPack |
❌ | defaultIconPack |
Icon pack |
meeting |
Meeting |
✅ | - | Meeting object |
participantIds |
string[] |
✅ | - | Participant ids |
selectedParticipantIds |
string[] |
✅ | - | selected participants |
t |
RtkI18n |
❌ | useLanguage() |
Language |
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"
/>
);
}