送信する下書き添付ファイルを描画するコンポーネントです。
| プロパティ | 型 | 必須 | デフォルト | 説明 |
|---|---|---|---|---|
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={{}}
/>
);
}