(props)
| 10 | class Tip extends ClickAway(Component) { |
| 11 | |
| 12 | constructor (props) { |
| 13 | super(props); |
| 14 | this.state = { |
| 15 | show: props.show, |
| 16 | position: props.position |
| 17 | }; |
| 18 | this.showTip = this.showTip.bind(this); |
| 19 | this.hideTip = this.hideTip.bind(this); |
| 20 | } |
| 21 | |
| 22 | componentDidMount() { |
| 23 | if (this.props.trigger == 'click') { |
nothing calls this directly
no outgoing calls
no test coverage detected