you are passing down as props myProps
.active
and status
are part of your object shape. With that in mind your propType should look like:
MyComponent.propTypes = {
myProps: PropTypes.arrayOf(
PropTypes.shape({
active: PropTypes.bool.isRequired,
status: PropTypes.string
})
)
}
also remember to import PropTypes
at the top:
import PropTypes from 'prop-types';
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…