| 10 | } from '../ui/tooltip'; |
| 11 | |
| 12 | interface VideoSearchCardProps { |
| 13 | video: TSearchedVideos; |
| 14 | onCardClick?: (videoUrl: string) => void; |
| 15 | } |
| 16 | |
| 17 | const VideoSearchCard: React.FC<VideoSearchCardProps> = ({ |
| 18 | video, |
nothing calls this directly
no outgoing calls
no test coverage detected