import {graphql} from 'react-apollo' import uploadsQuery from '../queries/uploads' const UploadList = ({data: {uploads}}) => { return (
{uploads.map(({id, name, type, size, path}) => ( ))}
Name Type Size Path
{name} {type} {size} {path}
) } export default graphql(uploadsQuery)(UploadList)