MCPcopy Create free account
hub / github.com/tinyplex/tinybase / SiteNodeSectionItem

Function SiteNodeSectionItem

site/ui/SiteNodeSection.tsx:195–211  ·  view source on GitHub ↗
({
  node,
})

Source from the content-addressed store, hash-verified

193};
194
195const SiteNodeSectionItem: FunctionComponent<{readonly node: Node}> = ({
196 node,
197}) => {
198 const children = getSkippedChildren(node);
199 return (
200 <li>
201 <NodeName
202 node={
203 children.length == 1 && children[0].reflection != null
204 ? children[0]
205 : node
206 }
207 link={true}
208 />
209 </li>
210 );
211};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…