PropTypes没有定义的问题

今天做项目遇到了一个坑

import React, { Component,PropTypes} from 'react';

console.log(PropTypes);        //undefined

用来限制prop的propTypes竟然是undefined,后查了资料才知道这种写法已经被废除,现在的写法如下:

import React, { Component } from 'react';
import PropTypes from 'prop-types';
原文地址:https://www.cnblogs.com/chenzhiyu/p/8126034.html