MCPcopy Index your code
hub / github.com/tinyplex/tinybase / CheckpointView

Function CheckpointView

src/ui-solid/CheckpointView.tsx:9–24  ·  view source on GitHub ↗
(props: CheckpointProps)

Source from the content-addressed store, hash-verified

7import {useCheckpoint} from './primitives.ts';
8
9export 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};

Callers

nothing calls this directly

Calls 3

useCheckpointFunction · 0.90
wrapFunction · 0.90
getValueFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…