(props)
| 13 | |
| 14 | class DropDownMenu extends PureComponent { |
| 15 | constructor(props) { |
| 16 | super(props); |
| 17 | |
| 18 | autoBindReact(this); |
| 19 | |
| 20 | this.state = { |
| 21 | collapsed: false, |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | getSelectedOption() { |
| 26 | const { options, selectedOption } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected