mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
23 lines
239 B
Markdown
23 lines
239 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);
|
|
````
|