| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
config |
UIConfig1 |
❌ | createDefaultConfig() |
設定 |
hideHeader |
boolean |
✅ | - | 視聴者数ヘッダーを隠します |
iconPack |
IconPack1 |
❌ | defaultIconPack |
アイコンパック |
meeting |
Meeting |
✅ | - | Meeting オブジェクト |
search |
string |
✅ | - | 検索 |
size |
Size1 |
✅ | - | サイズ |
t |
RtkI18n1 |
❌ | useLanguage() |
言語 |
view |
ParticipantsViewMode |
✅ | - | 参加者リストの表示モード |
import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkParticipantsViewerList />;
}import { RtkParticipantsViewerList } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkParticipantsViewerList
hideHeader={true}
meeting={meeting}
search="example"
/>
);
}