mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
'use strict';
|
|
|
|
let Pagination = require('rc-pagination');
|
|
let React = require('react');
|
|
|
|
let prefixCls = 'ant-pagination';
|
|
|
|
class AntPagination extends React.Component {
|
|
render() {
|
|
return <Pagination selectPrefixCls="ant-select" prefixCls={prefixCls} {...this.props} />;
|
|
}
|
|
}
|
|
|
|
module.exports = AntPagination;
|