({ columnIndex })
| 18 | ` |
| 19 | |
| 20 | const cellProps = ({ columnIndex }) => ({ |
| 21 | 'data-col-idx': columnIndex, |
| 22 | onMouseEnter: () => { |
| 23 | const table = tableRef.current.getDOMNode() |
| 24 | table.classList.add(`active-col-${columnIndex}`) |
| 25 | }, |
| 26 | onMouseLeave: () => { |
| 27 | const table = tableRef.current.getDOMNode() |
| 28 | table.classList.remove(`active-col-${columnIndex}`) |
| 29 | }, |
| 30 | }) |
| 31 | |
| 32 | const headerCellProps = ({ columnIndex }) => ({ |
| 33 | 'data-col-idx': columnIndex, |
nothing calls this directly
no test coverage detected