Spaces:
Sleeping
Sleeping
File size: 687 Bytes
8608e55 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
/**
* ImageUploader.jsx
*
* This component provides a file input to upload an image.
* - When a user selects an image, it creates a temporary object URL
* - Updates the parent component with the new image URL
* - Resets any existing detection/overlay states to start fresh
*/
function ImageUploader({ setImageUrl, resetStates }) {
const handleUpload = (e) => {
const file = e.target.files[0];
if (!file) return;
const url = URL.createObjectURL(file);
setImageUrl(url);
resetStates();
};
return (
<input
type="file"
accept="image/*"
onChange={handleUpload}
className="file-input"
/>
);
}
export default ImageUploader;
|