Skip to content

Instantly share code, notes, and snippets.

@samcorcos
Created August 10, 2016 10:42
Show Gist options
  • Save samcorcos/ef550c4593af3c69d68b6b2ee65b33fb to your computer and use it in GitHub Desktop.
Save samcorcos/ef550c4593af3c69d68b6b2ee65b33fb to your computer and use it in GitHub Desktop.
class App extends React.Component {
static propTypes {
title: React.PropTypes.string.isRequired
}
render() {
return (<div>{ this.props.title }</div>)
}
}
@caiolopes
Copy link

Small typo, on line 2, should be: static propTypes = {

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment