From 375b679b2df684986bc14bb4b6cdafbb0e3b9ca5 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Wed, 20 Jan 2021 13:01:49 -0500 Subject: [PATCH] Formatting --- src/components/ItemTableCell/ItemTableCell.js | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/components/ItemTableCell/ItemTableCell.js b/src/components/ItemTableCell/ItemTableCell.js index 5561bc7..15197ee 100644 --- a/src/components/ItemTableCell/ItemTableCell.js +++ b/src/components/ItemTableCell/ItemTableCell.js @@ -16,24 +16,24 @@ export default function ItemTableCell({ reactTableCellProps, backgroundColor, ch const classes = useStyles(); return ( - + {children} ); } ItemTableCell.propTypes = { - /** Props passed from ItemTable. */ - "reactTableProps": PropTypes.object, - /** Sets background color*/ - "backgroundColor": PropTypes.string, - /** Child object passed to display cell data. */ - "children": PropTypes.object, + /** Props passed from ItemTable. */ + "reactTableProps": PropTypes.object, + /** Sets background color*/ + "backgroundColor": PropTypes.string, + /** Child object passed to display cell data. */ + "children": PropTypes.object, }; ItemTableCell.defaultProps = { - "reactTableProps": {}, - "backgroundColor": "", - "children": {}, + "reactTableProps": {}, + "backgroundColor": "", + "children": {}, }; \ No newline at end of file