1 min readDec 21, 2019
There is another workaround. I used this to get proptypes working with react 16.12.
First, install PropTypes:
npm install --save prop-types
Add this to button.jsx, screen.jsx and screenRow.jsx
import { PropTypes } from ‘prop-types’;
Then change all React.PropTypes to PropTypes