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