react-adminlte
Version:
AdminLTE components written for React
23 lines (16 loc) • 393 B
JSX
import React from 'react';
import {COMPONENT_CHILDREN} from '../utils';
class TableHeader extends React.Component {
render() {
let {children, ...otherProps} = this.props;
return (
<th {...otherProps}>
{children}
</th>
);
}
}
TableHeader.propTypes = {
children: COMPONENT_CHILDREN
};
export default TableHeader;