({
checkpoints,
checkpointId,
debugIds,
}: CheckpointProps)
| 7 | import {useCheckpoint} from './hooks.ts'; |
| 8 | |
| 9 | export const CheckpointView: typeof CheckpointViewDecl = ({ |
| 10 | checkpoints, |
| 11 | checkpointId, |
| 12 | debugIds, |
| 13 | }: CheckpointProps): any => ( |
| 14 | <Wrap debugIds={debugIds} id={checkpointId}> |
| 15 | {useCheckpoint(checkpointId, checkpoints) ?? EMPTY_STRING} |
| 16 | </Wrap> |
| 17 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…