14 lines
373 B
JavaScript
14 lines
373 B
JavaScript
import { Table } from "antd";
|
|
|
|
function ResponsiveTable(props) {
|
|
return <Table {...props} />;
|
|
}
|
|
|
|
ResponsiveTable.Summary = Table.Summary;
|
|
ResponsiveTable.Column = Table.Column;
|
|
ResponsiveTable.ColumnGroup = Table.ColumnGroup;
|
|
ResponsiveTable.SELECTION_COLUMN = Table.SELECTION_COLUMN;
|
|
ResponsiveTable.EXPAND_COLUMN = Table.EXPAND_COLUMN;
|
|
|
|
export default ResponsiveTable;
|