drag and drop for file upload in react js code example
Example 1: drag n drop file upload react
<FileDrop
onTargetClick={onTargetClick}
Example 2: drag n drop file upload react
<input
onChange={onFileInputChange}
ref={fileInputRef}
type="file"
className="hidden"
/>
Example 3: drag n drop file upload react
const onTargetClick = () => {
fileInputRef.current.click()
}