| 18 | import { SearchResults } from './SearchResults'; |
| 19 | |
| 20 | interface SearchBarProps { |
| 21 | onCardClick?: () => void; |
| 22 | isMobile?: boolean; |
| 23 | } |
| 24 | |
| 25 | export function SearchBar({ onCardClick, isMobile = false }: SearchBarProps) { |
| 26 | const [state, setState] = useState({ |
nothing calls this directly
no outgoing calls
no test coverage detected