ant-design/components/pagination/index.jsx

15 lines
310 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');
let prefixCls = 'ant-patination';
class AntPagination extends React.Component {
render() {
2015-07-13 14:58:26 +08:00
return <Pagination className={prefixCls + this.props.className} {...this.props} />;
2015-07-13 01:04:05 +08:00
}
}
module.exports = AntPagination;