react-raphael-chart
react-raphael-chart copied to clipboard
Not working with React 16
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"