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