Skip to content

RtkChatSearchResults

Last updated View as MarkdownAgent setup

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

Properties

Property Type Required Default Description
channelId string - Channel id
iconPack IconPack1 defaultIconPack Icon pack
meeting Meeting - Meeting object
query string - Search query
t RtkI18n1 useLanguage() 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"
    />
  );
}

Was this helpful?