mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-21 02:21:10 +08:00
283 B
283 B
迷你
- order: 4
迷你版本。
var Pagination = antd.Pagination;
function onChange(page) {
console.log(page);
}
ReactDOM.render(
<Pagination size="small" onChange={onChange} total={50} />,
document.getElementById('components-pagination-demo-mini'));