Skip to content
Cloudflare Docs

RtkChatSearchResults

@deprecated rtk-chat-search-results is deprecated and will be removed soon. Use rtk-chat-messages-ui-paginated instead. -

Properties

PropertyTypeRequiredDefaultDescription
channelIdstring-Channel id
iconPackIconPack1defaultIconPackIcon pack
meetingMeeting-Meeting object
querystring-Search query
tRtkI18n1useLanguage()Language

Usage Examples

Basic Usage

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

With Properties

import { RtkChatSearchResults } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkChatSearchResults
channelId="example"
meeting={meeting}
query="example"
/>
);
}