export default MyContainer extends Component { | |
static propTypes = { | |
someProp: PropTypes.string.isRequired, | |
anotherProp: PropTypes.number | |
} | |
static defaultProps = { | |
anotherProp: 123 | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment