Files
MattrixwvReactComponents/lib/component/input/file/DragAndDropFileInput.tsx
2025-07-20 23:33:21 -04:00

21 lines
346 B
TypeScript

import { useRef } from "react";
export default function DragAndDropFileInput(){
const inputRef = useRef<HTMLInputElement>(null);
return (
<div
className="relative border-2 rounded-lg w-full h-full cursor-pointer"
>
<input
ref={inputRef}
type="file"
className="sr-only"
/>
Drag And Drop File Input
</div>
);
}