RtkParticipants
A component which lists all participants, with ability to run privileged actions on each participant according to your permissions.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
config | UIConfig | ❌ | createDefaultConfig() | Config |
defaultParticipantsTabId | ParticipantsTabId | ✅ | - | Default section |
iconPack | IconPack | ❌ | defaultIconPack | Icon pack |
meeting | Meeting | ✅ | - | Meeting object |
size | Size | ✅ | - | Size |
states | States | ✅ | - | States object |
t | RtkI18n | ❌ | useLanguage() | Language |
import { RtkParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return <RtkParticipants />;}import { RtkParticipants } from '@cloudflare/realtimekit-react-ui';
function MyComponent() { return ( <RtkParticipants defaultParticipantsTabId={participantstabid} meeting={meeting} size="md" /> );}