diff --git a/app/components/upload-list.js b/app/components/upload-list.js index b065007..ac9aba2 100644 --- a/app/components/upload-list.js +++ b/app/components/upload-list.js @@ -3,35 +3,49 @@ import uploadsQuery from '../queries/uploads' const UploadList = ({data: {uploads}}) => { return ( - - - - - - - - - - - {uploads.map(({id, name, type, size, path}) => ( - - - - - +
+
NameTypeSizePath
{name}{type}{size}{path}
+ + + + + + - ))} - + + + {uploads.map(({id, name, type, size, path}) => ( + + + + + + + ))} + +
NameTypeSizePath
{name}{type}{size}{path}
- + ) }