You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
359 B

import React from 'react';
import Pagination from 'rc-pagination';
import Select from 'rc-select';
const prefixCls = 'ant-pagination';
export default class AntPagination extends React.Component {
render() {
return <Pagination selectComponentClass={Select}
selectPrefixCls="ant-select"
prefixCls={prefixCls}
{...this.props} />;
}
}