PropTypes have been removed from the React package in React v16 and later.
Somewhere in your code you have either React.PropTypeseither an import statement like thisimport { PropTypes } from 'react'
You should change this by importing PropTypes as follows:
import PropTypes from 'prop-types';
And use it like that.
MyComponent.propTypes = {
props: PropTypes.string
}
, package.json dependencies dependencies prop-types, , :
npm install