JSFiddle - React, Tailwind, and code Playground

HTML

<input type="file" id="xx">

JavaScript

xx.addEventListener( "change", function ( e ) {
    document.body.textContent = this.files[0].type;
});