mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
29 lines
584 B
TypeScript
29 lines
584 B
TypeScript
|
import React from 'react';
|
||
|
import type { PaginationProps } from 'antd';
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
|
const onShowSizeChange: PaginationProps['onShowSizeChange'] = (current, pageSize) => {
|
||
|
console.log(current, pageSize);
|
||
|
};
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Pagination
|
||
|
showSizeChanger
|
||
|
onShowSizeChange={onShowSizeChange}
|
||
|
defaultCurrent={3}
|
||
|
total={500}
|
||
|
/>
|
||
|
<br />
|
||
|
<Pagination
|
||
|
showSizeChanger
|
||
|
onShowSizeChange={onShowSizeChange}
|
||
|
defaultCurrent={3}
|
||
|
total={500}
|
||
|
disabled
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|