一个用于渲染待发送草稿附件的组件。
| 属性 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
attachment |
{ type: 'image' | 'file'; file: File; } |
✅ | - | 要显示的附件 |
iconPack |
IconPack1 |
❌ | defaultIconPack |
图标包 |
t |
RtkI18n1 |
❌ | useLanguage() |
语言 |
import { RtkDraftAttachmentView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return <RtkDraftAttachmentView />;
}import { RtkDraftAttachmentView } from '@cloudflare/realtimekit-react-ui';
function MyComponent() {
return (
<RtkDraftAttachmentView
attachment={{}}
/>
);
}