()
| 67 | const inputRef = useRef<HTMLInputElement>(); |
| 68 | const [image, setImage] = useState(initialValue || fallbackImage); |
| 69 | const onClick = () => { |
| 70 | inputRef.current.click(); |
| 71 | }; |
| 72 | |
| 73 | const { onFileChange: handleFile } = useFileInput({ |
| 74 | acceptedTypes: acceptedTypesList, |
no outgoing calls
no test coverage detected