( extraCells: MaybeAccessor<(ExtraRowCell | ExtraValueCell)[] | undefined> = [], )
| 79 | }); |
| 80 | |
| 81 | export const extraHeaders = ( |
| 82 | extraCells: MaybeAccessor<(ExtraRowCell | ExtraValueCell)[] | undefined> = [], |
| 83 | ) => |
| 84 | arrayMap(getValue(extraCells) ?? [], (extraCell) => ( |
| 85 | <th class={EXTRA}>{extraCell.label}</th> |
| 86 | )); |
no test coverage detected
searching dependent graphs…