Warning: Accessing PropTypes via the main React package is deprecated

在使用react过程中,后台给出一个警告:

Warning: Accessing PropTypes via the main React package is deprecated, and will be removed in  React v16.0. Use the latest available v15.* prop-types package from npm instead.

上述代码是说,react16以后的版本将不再从react包里获取PropTypes,而是从 prop-types组件中获取,因此如果项目里还有一些组件直接从react中获取PropTypes,就会发出这样的警告。

不影响开发,但今后最好从 prop-types组件中获取PropTypes。

你可能感兴趣的:(react)