Skip to content

Instantly share code, notes, and snippets.

@tjwebb
Created February 9, 2017 19:36
Show Gist options
  • Save tjwebb/427e5157f1c8487511f21a5835cd48d5 to your computer and use it in GitHub Desktop.
Save tjwebb/427e5157f1c8487511f21a5835cd48d5 to your computer and use it in GitHub Desktop.
React PropTypes ES6
// Okay:
const Foo = class Foo extends Component {
// ...
}
Foo.propTypes = {
// ...
}
export default Foo
// ---------------
// Better:
export default class Foo extends Component {
static get propTypes () {
return {
// ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment