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