| 21 | } |
| 22 | |
| 23 | interface FileTreeProps { |
| 24 | files: FileNode[]; |
| 25 | selectedPath: string | null; |
| 26 | onSelect: (path: string) => void; |
| 27 | } |
| 28 | |
| 29 | const getFileIcon = (name: string) => { |
| 30 | const lower = name.toLowerCase(); |
nothing calls this directly
no outgoing calls
no test coverage detected