With the following code I can check the type of the incoming props, however how do I check the internals of each object inside of the array assets?
AssetsTable.propTypes = {
assets: PropTypes.array.isRequired
}
Say for example if I wanted to check assets[0].id: PropTypes.string.isRequired
