()
| 264 | ); |
| 265 | const checkpointIds = useCheckpointIds(resolvedCheckpoints); |
| 266 | const content = () => { |
| 267 | const Checkpoint = props.checkpointComponent ?? CheckpointView; |
| 268 | return wrap( |
| 269 | arrayMap( |
| 270 | getCheckpoints(getValue(checkpointIds)), |
| 271 | (checkpointId) => createComponent( |
| 272 | Checkpoint, |
| 273 | mergeProps( |
| 274 | () => getProps(props.getCheckpointComponentProps, checkpointId), |
| 275 | { |
| 276 | get checkpoints() { |
| 277 | return getValue(resolvedCheckpoints); |
| 278 | }, |
| 279 | checkpointId, |
| 280 | get debugIds() { |
| 281 | return props.debugIds; |
| 282 | } |
| 283 | } |
| 284 | ) |
| 285 | ) |
| 286 | ), |
| 287 | props.separator |
| 288 | ); |
| 289 | }; |
| 290 | return memo(content); |
| 291 | }; |
| 292 | var BackwardCheckpointsView = getUseCheckpointView( |
nothing calls this directly
no test coverage detected
searching dependent graphs…