“React proptypes.instanceof” Ответ

proptypes.objectof

Pokemon.propTypes = {
  pokemon: PropTypes.shape({
    name: PropTypes.string,
    id: PropTypes.number,
    base_stamina: PropTypes.number,
    base_defense: PropTypes.number
  })
}
Disturbed Dogfish

React proptypes.instanceof

// You can also declare that a prop is an instance of a class. This uses
// JS's instanceof operator.
optionalMessage: React.PropTypes.instanceOf(Message),
Grieving Gorilla

Ответы похожие на “React proptypes.instanceof”

Вопросы похожие на “React proptypes.instanceof”

Больше похожих ответов на “React proptypes.instanceof” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования