Я покажу файл перед загрузкой, я могу предварительно просмотреть файл изображения, но я не могу просмотреть другой тип файла, как я могу показать любой тип файла с реакцией js
const ShowFile = e =>{
if(e.target.files[0]){
var obj = new FileReader();
obj.onload = function(data){
// here i wante other type
var image = document.getElementById("file");
image.src = data.target.result;
image.style.display = "block";
}
obj.readAsDataURL(e.target.files[0]);
}
}