ant-design/components/pagination/demo/simple.md
2020-08-04 16:10:27 +08:00

340 B

order title
6
zh-CN en-US
简洁 Simple mode

zh-CN

简单的翻页。

en-US

Simple mode.

import { Pagination } from 'antd';

ReactDOM.render(
  <>
    <Pagination simple defaultCurrent={2} total={50} />
    <br />
    <Pagination disabled simple defaultCurrent={2} total={50} />
  </>,
  mountNode,
);