({
node,
})
| 193 | }; |
| 194 | |
| 195 | const 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 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…