Skip to content
Cloudflare Docs

RtkParticipants

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

Properties

PropertyTypeRequiredDefaultDescription
configUIConfigcreateDefaultConfig()Config
defaultParticipantsTabIdParticipantsTabId-Default section
iconPackIconPackdefaultIconPackIcon pack
meetingMeeting-Meeting object
sizeSize-Size
statesStates-States object
tRtkI18nuseLanguage()Language

Usage Examples

Basic Usage

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

With Properties

import { RtkParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkParticipants
defaultParticipantsTabId={participantstabid}
meeting={meeting}
size="md"
/>
);
}