()
| 461 | ); |
| 462 | const checkpointIds = useCheckpointIds(resolvedCheckpoints); |
| 463 | const content = () => { |
| 464 | const Checkpoint = props.checkpointComponent ?? CheckpointView; |
| 465 | return wrap( |
| 466 | arrayMap( |
| 467 | getCheckpoints(getValue(checkpointIds)), |
| 468 | (checkpointId) => createComponent( |
| 469 | Checkpoint, |
| 470 | mergeProps( |
| 471 | () => getProps(props.getCheckpointComponentProps, checkpointId), |
| 472 | { |
| 473 | get checkpoints() { |
| 474 | return getValue(resolvedCheckpoints); |
| 475 | }, |
| 476 | checkpointId, |
| 477 | get debugIds() { |
| 478 | return props.debugIds; |
| 479 | } |
| 480 | } |
| 481 | ) |
| 482 | ) |
| 483 | ), |
| 484 | props.separator |
| 485 | ); |
| 486 | }; |
| 487 | return memo(content); |
| 488 | }; |
| 489 | var BackwardCheckpointsView = getUseCheckpointView( |
no test coverage detected
searching dependent graphs…