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