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