Files
Desktop/ts/components/conversation/media-gallery/AttachmentSection.md
2018-05-08 16:52:01 -04:00

390 B

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} />;