Skip to content

Instantly share code, notes, and snippets.

@moonformeli
Created May 18, 2017 05:50
Show Gist options
  • Save moonformeli/f0266b90ee3ae50075924ff9a869275e to your computer and use it in GitHub Desktop.
Save moonformeli/f0266b90ee3ae50075924ff9a869275e to your computer and use it in GitHub Desktop.
es7_defaultProps.js
class MyComponent extends React.Component {
static defaultProps = {
items: []
}
render() {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment