ant-design/components/pagination/demo/simple.md
2018-11-28 15:11:02 +08:00

24 lines
252 B
Markdown

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