()
| 12 | range: React.PropTypes.number, |
| 13 | }, |
| 14 | getDefaultProps() { |
| 15 | return { |
| 16 | current: 1, |
| 17 | range: 7, |
| 18 | total: 30, |
| 19 | }; |
| 20 | }, |
| 21 | getInitialState() { |
| 22 | const {current} = this.props; |
| 23 | return { current }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…