| 88 | |
| 89 | |
| 90 | interface NodeSelectorProps { |
| 91 | open: boolean; |
| 92 | onOpenChange: (open: boolean) => void; |
| 93 | children: React.ReactNode; |
| 94 | }; |
| 95 | |
| 96 | export function NodeSelector({ |
| 97 | open, |
nothing calls this directly
no outgoing calls
no test coverage detected