JSFiddle - React, Tailwind, and code Playground
HTML
<label>Regular input</label><br/>
<input type="file" accept="image/*" /><br/><br/>
<label>Capture input</label><br/>
<input type="file" accept="image/*" capture /><br/><br/>
<label>Capture input: user</label><br/>
<input type="file" accept="image/*" capture="user" /><br/><br/>
<label>Capture input: environment</label><br/>
<input type="file" accept="image/*" capture="environment" /><br/>