UNPKG

react-adminlte

Version:

AdminLTE components written for React

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