mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
374 B
374 B
order | title | ||||
---|---|---|---|---|---|
10 |
|
zh-CN
展示所有配置选项。
en-US
Show all configured prop.
import { Pagination } from 'antd';
ReactDOM.render(
<div>
<Pagination
total={85}
showSizeChanger
showQuickJumper
showTotal={total => `Total ${total} items`}
/>
</div>,
mountNode,
);