Last active
August 10, 2016 10:40
-
-
Save samcorcos/c353c4987b0a367ad43c0f5fafdccdc5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class App extends React.Component { | |
render() { | |
return (<div>{ this.props.title }</div>) | |
} | |
} | |
App.propTypes = { | |
title: React.PropTypes.string.isRequired | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment