(item, index, event)
| 68 | } |
| 69 | |
| 70 | const onForwardClick: MessageListEvent = (item, index, event) => { |
| 71 | if (props.onForwardClick instanceof Function) props.onForwardClick(item, index, event) |
| 72 | } |
| 73 | |
| 74 | const onReplyClick: MessageListEvent = (item, index, event) => { |
| 75 | if (props.onReplyClick instanceof Function) props.onReplyClick(item, index, event) |
no outgoing calls
no test coverage detected
searching dependent graphs…