@deprecated rtk-chat-search-results is deprecated and will be removed soon. Use rtk-chat-messages-ui-paginated instead. -
| 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 |
import { RtkChatSearchResults } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkChatSearchResults />;
}import { RtkChatSearchResults } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkChatSearchResults
channelId="example"
meeting={meeting}
query="example"
/>
);
}