(props)
| 21 | |
| 22 | class Example2 extends Component { |
| 23 | constructor(props) { |
| 24 | super(props); |
| 25 | |
| 26 | this.state = { |
| 27 | canada: '', |
| 28 | usa: '' |
| 29 | }; |
| 30 | } |
| 31 | |
| 32 | componentDidMount() { |
| 33 | updatePosition(this.refs['SELECT1']); |
nothing calls this directly
no outgoing calls
no test coverage detected