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

32 lines
441 B
Markdown
Raw Normal View History

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