(props)
| 20 | |
| 21 | class DropdownItem extends React.Component { |
| 22 | constructor(props) { |
| 23 | super(props); |
| 24 | |
| 25 | this.onClick = this.onClick.bind(this); |
| 26 | this.getTabIndex = this.getTabIndex.bind(this); |
| 27 | } |
| 28 | |
| 29 | onClick(e) { |
| 30 | const { disabled, header, divider, text } = this.props; |
nothing calls this directly
no outgoing calls
no test coverage detected