(props)
| 9 | |
| 10 | class Pagination extends Component { |
| 11 | constructor (props) { |
| 12 | super(props); |
| 13 | this.state = { |
| 14 | index: props.index |
| 15 | }; |
| 16 | this.setInput = this.setInput.bind(this); |
| 17 | } |
| 18 | |
| 19 | componentWillReceiveProps (nextProps) { |
| 20 | if (nextProps.index !== this.props.index) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…