(props)
| 19 | |
| 20 | class Item extends Component { |
| 21 | constructor (props) { |
| 22 | super(props); |
| 23 | this.dismiss = this.dismiss.bind(this); |
| 24 | } |
| 25 | |
| 26 | dismiss () { |
| 27 | if (this.props.dismissed) { |
nothing calls this directly
no outgoing calls
no test coverage detected