PropTypes are a way to validate the values that are passed in through our props.
node
We can pass anything that can be rendered, such as numbers, string, DOM elements, arrays, or fragments that contain them using the React.PropTypes.node.
any type
React allows us to specify that a prop must be present, regardless of it’s type. We can do this by using the React.PropTypes.any validator.