ant-design/components/pagination/demo/simple.md
2015-10-20 16:47:55 +08:00

20 lines
281 B
Markdown

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