(props: CheckpointProps)
| 7 | import {useCheckpoint} from './primitives.ts'; |
| 8 | |
| 9 | export const CheckpointView = (props: CheckpointProps): JSXElement => { |
| 10 | const checkpoint = useCheckpoint( |
| 11 | () => props.checkpointId, |
| 12 | () => props.checkpoints, |
| 13 | ); |
| 14 | return ( |
| 15 | <> |
| 16 | {wrap( |
| 17 | getValue(checkpoint) ?? EMPTY_STRING, |
| 18 | undefined, |
| 19 | props.debugIds, |
| 20 | props.checkpointId, |
| 21 | )} |
| 22 | </> |
| 23 | ); |
| 24 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…