ant-design/components/pagination/demo/simple.md
2015-07-21 11:13:32 +08:00

20 lines
278 B
Markdown

# 简洁
- order: 6
简单地翻页。
---
````jsx
var Pagination = antd.Pagination;
function onChange(page) {
console.log(page);
}
React.render(
<Pagination simple onChange={onChange} total={50} />,
document.getElementById('components-pagination-demo-simple'));
````