Many inputs added

This commit is contained in:
2025-07-20 23:33:21 -04:00
parent f84f0a0ebc
commit cb8c2c23be
13 changed files with 335 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
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>
);
}