| 4 | import VideoSearchLoading from './VideoSearchLoading'; |
| 5 | |
| 6 | interface SearchResultsProps { |
| 7 | isVisible: boolean; |
| 8 | isMobile: boolean; |
| 9 | searchTerm: string; |
| 10 | loading: boolean; |
| 11 | searchedVideos: TSearchedVideos[] | null; |
| 12 | selectedIndex: number; |
| 13 | onCardClick: (videoUrl: string) => void; |
| 14 | } |
| 15 | |
| 16 | export function SearchResults({ |
| 17 | isVisible, |
nothing calls this directly
no outgoing calls
no test coverage detected