mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import React from 'react';
|
|
import { Pagination } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Pagination defaultCurrent={2} total={50} showSizeChanger={false} simple />
|
|
);
|
|
|
|
export default App;
|