ant-design/components/pagination/demo/all.md
2022-05-21 22:14:15 +08:00

392 B

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

zh-CN

展示所有配置选项。

en-US

Show all configured prop.

import { Pagination } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Pagination
    total={85}
    showSizeChanger
    showQuickJumper
    showTotal={total => `Total ${total} items`}
  />
);

export default App;