For this code:
const FirstComponentPropTypes = {
foo: PropTypes.any,
};
const SecondComponentPropTypes = {
bar: PropTypes.any,
};
...
function MyComponent({ foo, bar }) { ... }
In order to set the propTypes
of MyComponent
, is it possible to do something like:
MyComponent.propTypes = FirstComponentPropTypes | SecondComponentPropTypes;
?