Skip to content

Instantly share code, notes, and snippets.

@MicroBenz
Created March 10, 2018 14:11
Show Gist options
  • Save MicroBenz/8a329bb8c6d908680a3d187dc70ff55f to your computer and use it in GitHub Desktop.
Save MicroBenz/8a329bb8c6d908680a3d187dc70ff55f to your computer and use it in GitHub Desktop.
React Context
const Button = (props, context) => (
<button style={{background: context.color}}>
{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