(row: any)
| 60 | const format = createBooleanFormatter(column.booleanValues); |
| 61 | |
| 62 | function prepareData(row: any) { |
| 63 | return { |
| 64 | text: format(row[column.name]), |
| 65 | }; |
| 66 | } |
| 67 | |
| 68 | function BooleanColumn({ row }: any) { |
| 69 | // eslint-disable-line react/prop-types |
no test coverage detected