mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-21 02:21:10 +08:00
281 B
281 B
简洁
- order: 6
简单地翻页。
var Pagination = antd.Pagination;
function onChange(page) {
console.log(page);
}
ReactDOM.render(
<Pagination simple onChange={onChange} total={50} />,
document.getElementById('components-pagination-demo-simple'));