1. import {Pagination} from 'uskin';
    2. function handleClick(key, evt) {
    3. console.log(key)
    4. }
    5. ReactDOM.render(
    6. <div>
    7. <Pagination total={10} current={3} onClick={handleClick} />
    8. </div>,
    9. mountNode);