import { useRef } from "react"; export default function DragAndDropFileInput(){ const inputRef = useRef(null); return (
Drag And Drop File Input
); }