I’m using a data object as my props for a component in ReactJS.
<Field data={data} />
I know its easy to validate the PropTypes object itself:
propTypes: {
data: React.PropTypes.object
}
But what if I want to validate the values inside? ie. data.id, data.title?
props[propName]: React.PropTypes.number.required // etc...