File tree node from /v1/skills/detail API
| 1075 | |
| 1076 | /** File tree node from /v1/skills/detail API */ |
| 1077 | interface SkillTreeNode { |
| 1078 | title: string; |
| 1079 | key: string; |
| 1080 | children?: SkillTreeNode[]; |
| 1081 | } |
| 1082 | |
| 1083 | /** Recursive file tree component */ |
| 1084 | const FileTreeItem: React.FC<{ |
nothing calls this directly
no outgoing calls
no test coverage detected