Skip to content

RtkParticipants

Last updated View as MarkdownAgent setup

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

Properties

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

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"
    />
  );
}

Was this helpful?