Skip to content

Instantly share code, notes, and snippets.

@samcorcos
Last active August 10, 2016 10:40
Show Gist options
  • Save samcorcos/c353c4987b0a367ad43c0f5fafdccdc5 to your computer and use it in GitHub Desktop.
Save samcorcos/c353c4987b0a367ad43c0f5fafdccdc5 to your computer and use it in GitHub Desktop.
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