| 2 | import { ReactNode } from "react"; |
| 3 | |
| 4 | interface Props { |
| 5 | children: ReactNode; |
| 6 | tigger: ReactNode; |
| 7 | } |
| 8 | |
| 9 | const Dropdown = (props: Props) => { |
| 10 | const { children, tigger } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected