mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
387 B
387 B
order | title | ||||
---|---|---|---|---|---|
6 |
|
zh-CN
简单的翻页。
en-US
Simple mode.
import { Pagination } from 'antd';
import React from 'react';
const App: React.FC = () => (
<>
<Pagination simple defaultCurrent={2} total={50} />
<br />
<Pagination disabled simple defaultCurrent={2} total={50} />
</>
);
export default App;