(props)
| 440 | ); |
| 441 | }; |
| 442 | var CellView = (props) => { |
| 443 | const cell = useCell( |
| 444 | () => props.tableId, |
| 445 | () => props.rowId, |
| 446 | () => props.cellId, |
| 447 | () => props.store |
| 448 | ); |
| 449 | return memo( |
| 450 | () => wrap( |
| 451 | EMPTY_STRING + (getValue(cell) ?? EMPTY_STRING), |
| 452 | void 0, |
| 453 | props.debugIds, |
| 454 | props.cellId |
| 455 | ) |
| 456 | ); |
| 457 | }; |
| 458 | var getUseCheckpointView = (getCheckpoints) => (props) => { |
| 459 | const resolvedCheckpoints = useCheckpointsOrCheckpointsById( |
| 460 | () => props.checkpoints |