semantic-ui-react
Version:
The official Semantic-UI-React integration.
24 lines (19 loc) • 432 B
JavaScript
import React from 'react';
import { META } from '../../lib';
import TableHeader from './TableHeader';
/**
* A table can have a footer.
*/
function TableFooter(props) {
return React.createElement(TableHeader, props);
}
TableFooter.handledProps = ['as'];
TableFooter._meta = {
name: 'TableFooter',
type: META.TYPES.COLLECTION,
parent: 'Table'
};
TableFooter.defaultProps = {
as: 'tfoot'
};
export default TableFooter;