ant-design/components/pagination/demo/uncontrolled.md
2015-11-26 12:17:19 +08:00

16 lines
236 B
Markdown

# 简洁
- order: 8
不受控制的页码。
---
````jsx
import { Pagination } from 'antd';
ReactDOM.render(
<Pagination defaultCurrent={3} total={50} />,
document.getElementById('components-pagination-demo-uncontrolled'));
````