mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
281 B
281 B
order | title | ||||
---|---|---|---|---|---|
0 |
|
zh-CN
基础分页。
en-US
Basic pagination.
import { Pagination } from 'antd';
import React from 'react';
const App: React.FC = () => <Pagination defaultCurrent={1} total={50} />;
export default App;