From 34758d7c890624071165c36ac9397acb596b7f92 Mon Sep 17 00:00:00 2001 From: Jayden Seric Date: Sun, 9 Apr 2017 15:14:32 +1000 Subject: [PATCH] Responsive upload list table. --- app/components/upload-list.js | 54 ++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 20 deletions(-) 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}
- + ) }