const ValidateImg = (file) =>{_x000D_
let img = new Image()_x000D_
img.src = window.URL.createObjectURL(file)_x000D_
img.onload = () => {_x000D_
if(img.width === 100 && img.height ===100){_x000D_
alert("Correct size");_x000D_
return true;_x000D_
}_x000D_
alert("Incorrect size");_x000D_
return true;_x000D_
}_x000D_
}
_x000D_