我正在使用create-react-app来启动React项目.在最新的React 15.5.3软件包中,它出现以下警告:
警告:不建议通过主React包访问PropTypes.请改用npm中的prop-types包.
我已经关注了博客:
npm install prop-types 和 import PropTypes from 'prop-types';
但它不起作用.我不使用任何代码PropTypes或props代码:
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class App extends Component {
constructor() {
super();
this.state = {
videoVisible: true,
};
}
......
}
Run Code Online (Sandbox Code Playgroud)
如何解决?
谢谢.