All files / components/table/table-row index.js

0% Statements 0/24
0% Branches 0/8
0% Functions 0/3
0% Lines 0/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                                     
import React from 'react'
import PropTypes from 'prop-types'
import { Row } from 'react-flexbox-grid'
import StyledRow from './styledRow'
 
const TableRow = ({ children, ...rest }) => (
  <StyledRow {...rest}>
    <Row className='rowList'>
      {children}
    </Row>
  </StyledRow>
)
 
TableRow.propTypes = {
  children: PropTypes.element
}
 
export { TableRow }