({
checkpoints,
checkpointsById,
checkpointsId,
}: {
readonly checkpoints?: Checkpoints;
readonly checkpointsById?: {[checkpointsId: string]: Checkpoints};
readonly checkpointsId?: string;
})
| 608 | ); |
| 609 | |
| 610 | const ContextCheckpoints = ({ |
| 611 | checkpoints, |
| 612 | checkpointsById, |
| 613 | checkpointsId, |
| 614 | }: { |
| 615 | readonly checkpoints?: Checkpoints; |
| 616 | readonly checkpointsById?: {[checkpointsId: string]: Checkpoints}; |
| 617 | readonly checkpointsId?: string; |
| 618 | }) => ( |
| 619 | <Provider checkpoints={checkpoints} checkpointsById={checkpointsById}> |
| 620 | <ContextCheckpointsChild checkpointsId={checkpointsId} /> |
| 621 | </Provider> |
| 622 | ); |
| 623 | |
| 624 | const ContextCheckpointsChild = ({ |
| 625 | checkpointsId, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…