# FileAttachmentGroup

Component to render a group of file attachments within the [`MessageList`](/chat/docs/sdk/react-native/v5/ui-components/message-list/).

This is the default component provided to the prop [`FileAttachmentGroup`](/chat/docs/sdk/react-native/v5/core-components/channel#fileattachmentgroup/) on the `Channel` component.

## Props

### `messageId`

Id of the current message.

| Type   |
| ------ |
| string |

### `files`

Array of `file` type attachments to be shown in the grouped UI component.

```tsx
const files = message.attachments.filter((a) => a.type === "file");
```

| Type  |
| ----- |
| Array |



---

This page was last updated at 2026-05-14T12:22:46.822Z.

For the most recent version of this documentation, visit [https://getstream.io/chat/docs/sdk/react-native/v5/ui-components/file-attachment-group/](https://getstream.io/chat/docs/sdk/react-native/v5/ui-components/file-attachment-group/).