I have the following PropTypes
:
SmartTable.propTypes = {
name: React.PropTypes.string.isRequired,
cols: React.PropTypes.array.isRequired,
rows: React.PropTypes.array.isRequired,
};
but the linter says me:
Prop type "array" is forbidden
, how can I change it?