mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
14 lines
241 B
TypeScript
14 lines
241 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;
|