ant-design/components/pagination/index.jsx

15 lines
316 B
React
Raw Normal View History

2015-07-13 01:04:05 +08:00
'use strict';
let Pagination = require('rc-pagination');
let React = require('react');
2015-07-14 12:09:29 +08:00
let prefixCls = 'ant-pagination';
2015-07-13 01:04:05 +08:00
class AntPagination extends React.Component {
render() {
2015-07-14 12:09:29 +08:00
return <Pagination selectPrefixCls="ant-select" prefixCls={prefixCls} {...this.props} />;
2015-07-13 01:04:05 +08:00
}
}
module.exports = AntPagination;