({children, classNameRoot, ...props})
| 64 | ); |
| 65 | |
| 66 | export default function Table({children, classNameRoot, ...props}) { |
| 67 | return ( |
| 68 | <StyledTable className={[classNameRoot].join(' ')} {...props}>{children}</StyledTable> |
| 69 | ); |
| 70 | } |
| 71 | |
| 72 | Table.propTypes = { |
| 73 | children: CustomPropTypes.children, |
no test coverage detected