mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-14 08:51:26 +08:00
14 lines
239 B
TypeScript
14 lines
239 B
TypeScript
|
import React from 'react';
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Pagination
|
||
|
total={85}
|
||
|
showSizeChanger
|
||
|
showQuickJumper
|
||
|
showTotal={total => `Total ${total} items`}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|