make children prop optional in Td component

This commit is contained in:
hobroker 2019-11-07 23:24:13 +02:00
parent e971bdc9a6
commit 44b58cb60d

View File

@ -12,12 +12,13 @@ Td.propTypes = {
PropTypes.element,
PropTypes.arrayOf(PropTypes.node),
PropTypes.arrayOf(PropTypes.element),
]).isRequired,
]),
isMonospace: PropTypes.bool,
};
Td.defaultProps = {
isMonospace: false,
children: null,
};
export default Td;