1. 程式人生 > >React使用過程中的異常

React使用過程中的異常

React.PropTypes is deprecated since React 15.5.0, use the npm module prop-types instead

解決:

將原來使用的

import PropTypes from 'react'

fieldXX: PropTypes.object.isRequired

代替為

import PropTypes from 'prop-types'

fieldXX: PropTypes.object.isRequired

參考