ant-design/components/pagination/demo/mini.md

16 lines
233 B
Markdown
Raw Normal View History

2015-07-13 14:58:26 +08:00
# 迷你
- order: 4
2015-07-21 11:13:32 +08:00
迷你版本。
2015-07-13 14:58:26 +08:00
---
````jsx
import { Pagination } from 'antd';
2015-07-13 14:58:26 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-11-26 17:15:18 +08:00
<Pagination size="small" defaultCurrent={2} total={50} />,
2015-07-13 14:58:26 +08:00
document.getElementById('components-pagination-demo-mini'));
````