(entry: FileEntry)
| 345 | }; |
| 346 | |
| 347 | const handleEntryClick = (entry: FileEntry) => { |
| 348 | // Single click always selects (file or directory) |
| 349 | onSelect(entry); |
| 350 | }; |
| 351 | |
| 352 | const handleEntryDoubleClick = (entry: FileEntry) => { |
| 353 | // Double click navigates into directories |
no outgoing calls
no test coverage detected