Ho un componente che riceve un sostegno per le sue dimensioni. L'elica può essere una stringa o un numero es: "LARGE"
o 17
.
Posso far sapere a React.PropTypes che questo può essere l'uno o l'altro nella validazione propTypes?
Se non specifico il tipo ricevo un avviso: prop type `size` is invalid; it must be a function, usually from React.PropTypes.
MyComponent.propTypes = {
size: React.PropTypes
}
ReferenceError: oneOfType is not defined
- qualche suggerimento? Grazie in anticipo!!