( extraValueCells: ExtraValueCell[] = [], extraValueCellProps: ValueProps, after: 0 | 1 = 0, )
| 15 | import {extraHeaders, extraKey} from './common/index.tsx'; |
| 16 | |
| 17 | const extraValueCells = ( |
| 18 | extraValueCells: ExtraValueCell[] = [], |
| 19 | extraValueCellProps: ValueProps, |
| 20 | after: 0 | 1 = 0, |
| 21 | ) => |
| 22 | arrayMap(extraValueCells, ({component: Component}, index) => ( |
| 23 | <td className={EXTRA} key={extraKey(index, after)}> |
| 24 | <Component {...extraValueCellProps} /> |
| 25 | </td> |
| 26 | )); |
| 27 | |
| 28 | export const ValuesInHtmlTable: typeof ValuesInHtmlTableDecl = ({ |
| 29 | store, |
no test coverage detected
searching dependent graphs…