mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
b34269a6b1
convert var to const fix bug fix bug fix for jshint fix import
15 lines
359 B
JavaScript
15 lines
359 B
JavaScript
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} />;
|
|
}
|
|
}
|