ant-design/components/pagination/demo/more.md
2017-01-19 15:22:53 +08:00

23 lines
237 B
Markdown

---
order: 1
title:
zh-CN: 更多
en-US: More
---
## zh-CN
更多分页。
## en-US
More pages.
````__react
import { Pagination } from 'antd';
ReactDOM.render(
<Pagination defaultCurrent={1} total={500} />
, mountNode);
````