mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-09 04:58:38 +08:00
16 lines
236 B
Markdown
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'));
|
|
````
|