JSFiddle - React, Tailwind, and code Playground
HTML
<form enctype="multipart/form-data" method="post" action="upload.php">
<img src="http://upload.wikimedia.org/wikipedia/commons/2/22/Turkish_Van_Cat.jpg" width ='100px' height='100px'>
<div class="row">
<label for="fileToUpload">Select a File to Upload</label><br />
<input type="file" accept="image/*" name="fileToUpload" id="fileToUpload" capture="camera">
</div>
<div class="row">
<input type="submit" value="Upload" />
</div>
</form>