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

23 lines
254 B
Markdown

---
order: 6
title:
zh-CN: 简洁
en-US: Simple mode
---
## zh-CN
简单的翻页。
## en-US
Simple mode.
````__react
import { Pagination } from 'antd';
ReactDOM.render(
<Pagination simple defaultCurrent={2} total={50} />
, mountNode);
````