mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-15 13:38:29 +02:00
8 lines
195 B
TypeScript
8 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;
|