(props)
| 58 | |
| 59 | class Message extends Component { |
| 60 | constructor (props) { |
| 61 | super(props); |
| 62 | this.clear.bind(this); |
| 63 | } |
| 64 | |
| 65 | dismiss (index) { |
| 66 | PubSub.publish(REMOVE_MESSAGE, index); |
nothing calls this directly
no outgoing calls
no test coverage detected