Hola usuario de nuestra página, hallamos la solución a lo que buscabas, continúa leyendo y la obtendrás a continuación.
Ejemplo 1: proptypes oneof
importPropTypesfrom'prop-types';MyComponent.propTypes=// You can declare that a prop is a specific JS type. By default, these// are all optional.
optionalArray:PropTypes.array,
optionalBool:PropTypes.bool,
optionalFunc:PropTypes.func,
optionalNumber:PropTypes.number,
optionalObject:PropTypes.object,
optionalString:PropTypes.string,
optionalSymbol:PropTypes.symbol,// An object that could be one of many types
optionalUnion:PropTypes.oneOfType([PropTypes.string,PropTypes.number,PropTypes.instanceOf(Message)]);
Ejemplo 2: propTypes
importPropTypesfrom'prop-types';classGreetingextendsReact.Componentrender()return(<h1>Hello,this.props.name</h1>);Greeting.propTypes=
name:PropTypes.string;
Recuerda comunicar este ensayo si si solucionó tu problema.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)