mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 17:19:11 +08:00
15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
|
import React from 'react';
|
||
|
import { Pagination } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Pagination align="start" defaultCurrent={1} total={50} />
|
||
|
<br />
|
||
|
<Pagination align="center" defaultCurrent={1} total={50} />
|
||
|
<br />
|
||
|
<Pagination align="end" defaultCurrent={1} total={50} />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|