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

20 lines
277 B
Markdown
Raw Normal View History

2015-07-13 16:04:07 +08:00
# 简洁
- 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'));
````