(e)
| 100 | } |
| 101 | |
| 102 | handleMouseDown (e) { |
| 103 | const { row, col, onMouseDown, cell } = this.props |
| 104 | if (!cell.disableEvents) { |
| 105 | onMouseDown(row, col, e) |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | handleMouseOver (e) { |
| 110 | const { row, col, onMouseOver, cell } = this.props |
nothing calls this directly
no test coverage detected