Snippet of a simple file field with original Semantic UI for React. Semantic UI is still missing a file field component. Other solution would be to use react-dropzone for creating a dropzone.
Source code viewer
<Form.Input error={typeof this.state.errors.file_photo !== 'undefined' ? this.state.errors.file_photo : false} label="Photo" name="file_photo" > <input type="file" /> </Form.Input>Programming Language: ECMAScript