Enforce Specific Values With PropTypes
MyComponent.propTypes = {
flavor: PropTypes.oneOf(['Vanilla', 'Chocolate', 'Strawberry']),
};Last updated
MyComponent.propTypes = {
flavor: PropTypes.oneOf(['Vanilla', 'Chocolate', 'Strawberry']),
};Last updated