({ row }: any)
| 66 | } |
| 67 | |
| 68 | function BooleanColumn({ row }: any) { |
| 69 | // eslint-disable-line react/prop-types |
| 70 | const { text } = prepareData(row); |
| 71 | return text; |
| 72 | } |
| 73 | |
| 74 | BooleanColumn.prepareData = prepareData; |
| 75 |
nothing calls this directly
no test coverage detected