react-raphael-chart icon indicating copy to clipboard operation
react-raphael-chart copied to clipboard

Not working with React 16

Open cedricdelpoux opened this issue 7 years ago • 0 comments

Hello, I get the error Cannot read property 'number' of undefined on

Paper.propTypes = {
    x: React.PropTypes.number,
}

Because PropTypes is not part of React package anymore. You need to get this from prop-types package

import PropTypes from "prop-types"

cedricdelpoux avatar Oct 24 '17 14:10 cedricdelpoux