(e)
| 107 | } |
| 108 | |
| 109 | handleMouseOver (e) { |
| 110 | const { row, col, onMouseOver, cell } = this.props |
| 111 | if (!cell.disableEvents) { |
| 112 | onMouseOver(row, col) |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | handleDoubleClick (e) { |
| 117 | const { row, col, onDoubleClick, cell } = this.props |
nothing calls this directly
no test coverage detected