session-desktop/ts/components/conversation/media-gallery/AttachmentSection.md

34 lines
475 B
Markdown
Raw Normal View History

2018-05-08 22:12:24 +02:00
```jsx
const mediaItems = [
2018-05-08 22:12:24 +02:00
{
index: 0,
message: {
id: '1',
},
attachment: {
fileName: 'foo.json',
contentType: 'application/json',
size: 53313,
},
2018-05-08 22:12:24 +02:00
},
{
index: 1,
message: {
id: '2',
},
attachment: {
fileName: 'bar.txt',
contentType: 'text/plain',
size: 10323,
},
2018-05-08 22:12:24 +02:00
},
];
<AttachmentSection
header="Today"
type="documents"
mediaItems={mediaItems}
i18n={util.i18n}
/>;
2018-05-08 22:12:24 +02:00
```