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

Function children

src/ui-solid-inspector/index.tsx:605–622  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

603 handleEditable,
604 s: props.s,
605 get children() {
606 return (
607 <>
608 {arrayIsEmpty(valueIds()) ? (
609 <p>No values.</p>
610 ) : (
611 <ValuesInHtmlTable
612 store={props.store}
613 editable={editable()}
614 extraCellsAfter={
615 (() => (editable() ? valueActions : [])) as unknown as []
616 }
617 />
618 )}
619 {editable() ? <ValuesActions store={props.store} /> : EMPTY_STRING}
620 </>
621 );
622 },
623 });
624};
625

Callers

nothing calls this directly

Calls 5

arrayIsEmptyFunction · 0.90
objNewFunction · 0.90
arrayMapFunction · 0.90
sortedIdsMapFunction · 0.90
editableFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…