我在以下帮助下设置了一个新的 React:创建 React 应用程序
但是,我遇到了 linting 问题。我收到以下 linting 错误'PropTypes' is not defined. (no-undef)
。
这是导致问题的代码:
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class Routers extends Component {
static propTypes = {
history: PropTypes.object.isRequired
};
...
我尝试使用react/prop-types规则,但无济于事。