Skip to content

Instantly share code, notes, and snippets.

@ritz078
Created June 21, 2016 21:42
Show Gist options
  • Save ritz078/50c684450098a9dca19fef3339546dbb to your computer and use it in GitHub Desktop.
Save ritz078/50c684450098a9dca19fef3339546dbb to your computer and use it in GitHub Desktop.
// Do
export default MyComponent extends React.Component{}
MyComponent.propTypes = {
name: React.PropType.string
}
// Don't
export default MyComponent extends React.Component{
static propTypes = {
name: React.PropType.string
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment