@deprecated rtk-chat-search-results 已弃用并即将移除。请改用 rtk-chat-messages-ui-paginated。-
| 属性 | 类型 | 是否必填 | 默认值 | 描述 |
|---|---|---|---|---|
channelId |
string |
✅ | - | 频道 ID |
iconPack |
IconPack1 |
❌ | defaultIconPack |
图标包 |
meeting |
Meeting |
✅ | - | 会议对象 |
query |
string |
✅ | - | 搜索查询 |
t |
RtkI18n1 |
❌ | useLanguage() |
语言 |
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"
/>
);
}