| 10 | typeof node === 'string' ? { name: node } : node |
| 11 | |
| 12 | interface Props { |
| 13 | children: () => Node |
| 14 | } |
| 15 | |
| 16 | export default function FileTreeDiagram({ children }: Props) { |
| 17 | const root = children() |
nothing calls this directly
no outgoing calls
no test coverage detected