| 2 | import { useRef } from 'react' |
| 3 | |
| 4 | interface SearchInputProps { |
| 5 | placeholder: string |
| 6 | setSearchValue: (v: string) => void |
| 7 | } |
| 8 | export const SearchInput = (props: SearchInputProps) => { |
| 9 | const isComposing = useRef(false) |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected