(props)
| 7 | |
| 8 | export class NestedDropdown extends React.Component { |
| 9 | constructor(props) { |
| 10 | super(props); |
| 11 | |
| 12 | this.state = { |
| 13 | openId: null |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | handleOpen(targetId) { |
| 18 | this.setState({ |
nothing calls this directly
no outgoing calls
no test coverage detected