ant-design/components/pagination/demo/simple.md
2016-04-01 10:08:19 +08:00

15 lines
185 B
Markdown

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