mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
24 lines
275 B
Markdown
24 lines
275 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: 更多
|
|
en-US: More
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
更多分页。
|
|
|
|
## en-US
|
|
|
|
More pages.
|
|
|
|
```tsx
|
|
import { Pagination } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => <Pagination defaultCurrent={6} total={500} />;
|
|
|
|
export default App;
|
|
```
|