Skip to content
Cloudflare Docs

RtkChatSelectorUi

Properties

PropertyTypeRequiredDefaultDescription
groupsChatGroup[]-Participants
iconPackIconPack1defaultIconPackIcon pack
selectedGroupIdstring-Selected participant
selfUserIdstring-Self User ID
tRtkI18nuseLanguage()Language
unreadCountsRecord<string, number>-Unread counts

Usage Examples

Basic Usage

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

With Properties

import { RtkChatSelectorUi } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkChatSelectorUi
groups={[]}
selectedGroupId="example"
selfUserId="example"
/>
);
}