(nextProps)
| 24 | }, |
| 25 | |
| 26 | componentWillReceiveProps(nextProps) { |
| 27 | const {current} = this.props; |
| 28 | if (nextProps.current !== current) { |
| 29 | this.setState({ |
| 30 | current: nextProps.current |
| 31 | }); |
| 32 | } |
| 33 | }, |
| 34 | |
| 35 | makeTab(){ |
| 36 | let {children, style, className} = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…