You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/table/index.jsx

16 lines
254 B
React

10 years ago
import React from 'react';
import Table from 'rc-table';
let AntTable = React.createClass({
getDefaultProps() {
return {
prefixCls: 'ant-table'
};
},
render() {
return <Table {...this.props} />;
}
});
export default AntTable;