ant-design/components/pagination/demo/all.md
2020-03-30 10:50:29 +08:00

374 B

order title
10
zh-CN en-US
全部展示 Show All

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,
);