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