Last active
October 15, 2016 23:10
-
-
Save codeocelot/2837bf3e7b533bc68abcfc62eb0701b9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Greeting = (props,context) => <p style={context.style}>Hello World</p> | |
Greeting.contextTypes = { | |
color: React.PropTypes.string, | |
backgroundColor: React.PropTypes.string, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment