@pubsweet/ui
Version:
React component library for use in pubsweet apps
18 lines (13 loc) • 334 B
JavaScript
import React from 'react'
import { Attachment } from '../atoms'
import { FileUploadList } from '../molecules'
// TODO: show upload progress
const Attachments = props => (
<FileUploadList
{...props}
buttonText="Attach file"
className={props.className}
FileComponent={Attachment}
/>
)
export default Attachments