diff --git a/ts/components/conversation/media-gallery/AttachmentSection.md b/ts/components/conversation/media-gallery/AttachmentSection.md new file mode 100644 index 000000000..56b0a344c --- /dev/null +++ b/ts/components/conversation/media-gallery/AttachmentSection.md @@ -0,0 +1,24 @@ +```jsx +const messages = [ + { + attachments: [ + { + fileName: 'foo.json', + contentType: 'application/json', + size: 53313, + }, + ], + }, + { + attachments: [ + { + fileName: 'bar.txt', + contentType: 'text/plain', + size: 10323, + }, + ], + }, +]; + +; +```