Skip to content

Instantly share code, notes, and snippets.

@Suaz
Created August 11, 2018 01:13
Show Gist options
  • Save Suaz/7703f331657617898aa3b8e69d2b02e6 to your computer and use it in GitHub Desktop.
Save Suaz/7703f331657617898aa3b8e69d2b02e6 to your computer and use it in GitHub Desktop.
React & material-ui upload field
<Button
raised
component="label"
color="primary"
disabled={this.state.loading}
>
{'Upload'}
<FileUpload className={classes.rightIcon}/>
<input
onChange={e => console.log(e.target.files[0])}
style={{display: 'none'}}
type="file"
/>
</Button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment