ant-design/components/pagination/demo/simple.md
2015-11-26 17:15:18 +08:00

16 lines
231 B
Markdown

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