| 33 | } |
| 34 | |
| 35 | interface WikiTreeViewProps { |
| 36 | wikiStructure: WikiStructure; |
| 37 | currentPageId: string | undefined; |
| 38 | onPageSelect: (pageId: string) => void; |
| 39 | messages?: { |
| 40 | pages?: string; |
| 41 | [key: string]: string | undefined; |
| 42 | }; |
| 43 | } |
| 44 | |
| 45 | const WikiTreeView: React.FC<WikiTreeViewProps> = ({ |
| 46 | wikiStructure, |
nothing calls this directly
no outgoing calls
no test coverage detected