drag and drop file react js code example
Example 1: drag n drop file upload react
const onTargetClick = () => {
fileInputRef.current.click()
}
Example 2: drag n drop file upload react
const fileInputRef = useRef(null);
const onTargetClick = () => {
fileInputRef.current.click()
}
const fileInputRef = useRef(null);