| 1 | import { memo } from 'react'; |
| 2 | |
| 3 | interface SearchProps { |
| 4 | onChange: (text: string) => void; |
| 5 | } |
| 6 | |
| 7 | function Search({ onChange }: SearchProps) { |
| 8 | console.log('Search rendered!'); |
nothing calls this directly
no outgoing calls
no test coverage detected