Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created March 10, 2018 14:08
Show Gist options
  • Save MicroBenz/1998b6b4a70213821ae32d81df38dffc to your computer and use it in GitHub Desktop.
Save MicroBenz/1998b6b4a70213821ae32d81df38dffc to your computer and use it in GitHub Desktop.
React Context
class Button extends React.Component {
render() {
return (
<button style={{background: this.context.color}}>
{this.props.children}
</button>
);
}
}
Button.contextTypes = {
color: PropTypes.string
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment