Skip to content

Instantly share code, notes, and snippets.

@BrianCortes
Last active August 1, 2017 04:40
Show Gist options
  • Save BrianCortes/ecbcbdbefc518f348018f81335e71cf9 to your computer and use it in GitHub Desktop.
Save BrianCortes/ecbcbdbefc518f348018f81335e71cf9 to your computer and use it in GitHub Desktop.
defaultProps and propTypes
Comment.defaultProps = {
valueInput: ''
}
Comments.propTypes = {
addComment: PropTypes.func.isRequired,
comments: PropTypes.array.isRequired,
changeText: PropTypes.func.isRequired
}
export default Comments;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment