(props)
| 3 | |
| 4 | export default class PaginationDemo extends React.Component { |
| 5 | constructor(props){ |
| 6 | super(props); |
| 7 | this.state = { |
| 8 | current: 6, |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | handlePageChange(page){ |
| 13 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected