Skip to content

Instantly share code, notes, and snippets.

Created November 15, 2016 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/02e3ed5044f79eed9cbe65878c896e7a to your computer and use it in GitHub Desktop.
Save anonymous/02e3ed5044f79eed9cbe65878c896e7a to your computer and use it in GitHub Desktop.
render() {
return (
<div>
<Modal
style={{
overlay: {
backgroundColor: 'papayawhip'
},
content: {
color: 'lightsteelblue'
}
}}
/>
<Button
text="Refresh"
onClick={this.openModal}
disabled={this.props.isFetching}
/>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment