/* eslint-disable react/prop-types */ import React from 'react'; import Attachment from './Attachment'; export default class PageAttachmentList extends React.Component { render() { if (this.props.attachments <= 0) { return null; } const attachmentList = this.props.attachments.map((attachment, idx) => { return ( ); }); return (
{(attachmentList.length !== 0) &&
Attachments
}
); } }