UNPKG

react-adminlte

Version:

AdminLTE components written for React

23 lines (16 loc) 384 B
import React from 'react'; import {COMPONENT_CHILDREN} from '../utils'; class TableRow extends React.Component { render() { let {children, ...otherProps} = this.props; return ( <tr {...otherProps}> {children} </tr> ); } } TableRow.propTypes = { children: COMPONENT_CHILDREN }; export default TableRow;