mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-03 22:55:44 +01:00
25 lines
390 B
Markdown
25 lines
390 B
Markdown
```jsx
|
|
const messages = [
|
|
{
|
|
attachments: [
|
|
{
|
|
fileName: 'foo.json',
|
|
contentType: 'application/json',
|
|
size: 53313,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
attachments: [
|
|
{
|
|
fileName: 'bar.txt',
|
|
contentType: 'text/plain',
|
|
size: 10323,
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
<AttachmentSection header="Today" type="documents" messages={messages} />;
|
|
```
|