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 ( ); } }