Skip to content

RtkParticipantsViewerList

Last updated View as MarkdownAgent setup

Properties

Property Type Required Default Description
config UIConfig1 createDefaultConfig() Config
hideHeader boolean - Hide Viewer Count Header
iconPack IconPack1 defaultIconPack Icon pack
meeting Meeting - Meeting object
search string - Search
size Size1 - Size
t RtkI18n1 useLanguage() Language
view ParticipantsViewMode - View mode for participants list

Usage Examples

Basic Usage

import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return <RtkParticipantsViewerList />;
}

With Properties

import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';

function MyComponent() {
  return (
    <RtkParticipantsViewerList
      hideHeader={true}
      meeting={meeting}
      search="example"
    />
  );
}

Was this helpful?