I have an input file on my jsx, and I want to change the text "Choisir un fichier" and "Aucun fichier choisi"
My code is :
<div className="form-group">
<label className="control-label col-sm-2" ><strong>Site - Logo (150 x 30px)</strong></label>
<div className="col-sm-10">
<input type="file" className="form-control-file" onChange={this.handleImgLogoChange} style={{border:'.1rem solid #d9d9d9', borderRadius:'.2rem'}}/>
</div>
</div>
When I run it, I get:
How to change the default text of input file ?

inputstyling. If this is aninput, then theplaceholderis responsible for it. Look here, see if it helps. (w3schools.com/howto/howto_css_placeholder.asp)