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/pagination/index.jsx

19 lines
399 B
React

'use strict';
let React = require('react');
let Pagination = require('rc-pagination');
let Select = require('rc-select');
let prefixCls = 'ant-pagination';
class AntPagination extends React.Component {
render() {
10 years ago
return <Pagination selectComponentClass={Select}
selectPrefixCls="ant-select"
prefixCls={prefixCls}
{...this.props} />;
}
}
module.exports = AntPagination;