我通过运行prop-types
安装了npm i prop-types --save
软件包,并且我的依赖项是:
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1"
},
我的代码:
import React from 'react';
import PropTypes from 'prop-types';
function Question(props) {
return (
<h2 className="question">{props.content}</h2>
);
}
Question.propTypes = {
content: React.PropTypes.string.isRequired
};
export default Question;
我在这里想念什么?
答案 0 :(得分:1)
基于ReactJS文档/教程页面Type Checking with PropTypes,您似乎正在尝试使用旧方法访问PropTypes
。
尝试使用此代替:
Question.propTypes = {
content: PropTypes.string.isRequired
};
答案 1 :(得分:1)
看看documentation并不需要React
前缀:
Question.propTypes = {
content: PropTypes.string.isRequired
};