diff options
Diffstat (limited to 'frontend/components/Items.js')
| -rw-r--r-- | frontend/components/Items.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/components/Items.js b/frontend/components/Items.js index 01d9786..1b0c8bb 100644 --- a/frontend/components/Items.js +++ b/frontend/components/Items.js @@ -18,7 +18,7 @@ const Center = styled.div` `; class ItemList extends React.Component { - something() { } + something() {} render() { const { loading, error } = this.props.itemsQuery; // 1 @@ -31,7 +31,6 @@ class ItemList extends React.Component { console.log(this.props.itemsQuery.error); return <div>Error</div>; } - console.log(this.props); // 3 const itemsToRender = this.props.itemsQuery.items; |
