()
| 16 | () => props.store, |
| 17 | ); |
| 18 | const content = () => { |
| 19 | const Cell = props.cellComponent ?? CellView; |
| 20 | return wrap( |
| 21 | arrayMap(getValue(cellIds) as Id[], (cellId: Id) => ( |
| 22 | <Cell |
| 23 | {...getProps(props.getCellComponentProps, cellId)} |
| 24 | tableId={props.tableId} |
| 25 | rowId={props.rowId} |
| 26 | cellId={cellId} |
| 27 | store={props.store} |
| 28 | debugIds={props.debugIds} |
| 29 | /> |
| 30 | )), |
| 31 | props.separator, |
| 32 | props.debugIds, |
| 33 | props.rowId, |
| 34 | ); |
| 35 | }; |
| 36 | return <>{content()}</>; |
| 37 | }; |