mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-14 16:19:15 +08:00
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
|
import React from 'react';
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => <Pagination defaultCurrent={3} total={500} showQuickJumper />;
|
||
|
|
||
|
export default App;
|