import Avatar from 'flavours/glitch/components/avatar';
import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp';
import DisplayName from 'flavours/glitch/components/display_name';
+import AttachmentList from 'flavours/glitch/components/attachment_list';
import ImmutablePureComponent from 'react-immutable-pure-component';
const messages = defineMessages({
</div>
<StatusContent status={status} />
+
+ {status.get('media_attachments').size > 0 && (
+ <AttachmentList
+ compact
+ media={status.get('media_attachments')}
+ />
+ )}
</div>
</div>