mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
21 lines
233 B
Markdown
21 lines
233 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基础分页。
|
|
|
|
## en-US
|
|
|
|
Basic pagination.
|
|
|
|
```jsx
|
|
import { Pagination } from 'antd';
|
|
|
|
ReactDOM.render(<Pagination defaultCurrent={1} total={50} />, mountNode);
|
|
```
|