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