Skip to content

RtkBreakoutRoomParticipants

A component which lists all participants, with ability to run privileged actions on each participant according to your permissions.

Properties

PropertyTypeRequiredDefaultDescription
iconPackIconPack❌defaultIconPackIcon pack
meetingMeeting✅-Meeting object
participantIdsstring[]✅-Participant ids
selectedParticipantIdsstring[]✅-selected participants
tRtkI18n❌useLanguage()Language

Usage Examples

Basic Usage

import { RtkBreakoutRoomParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkBreakoutRoomParticipants />;
}

With Properties

import { RtkBreakoutRoomParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkBreakoutRoomParticipants
meeting={meeting}
participantIds="example"
selectedParticipantIds="example"
/>
);
}