arnthor3 / react-bootstrap-toggle

Bootstrap-toggle without the JQuery dependencies
Other
54 stars 16 forks source link

Warning: Accessing PropTypes via the main React package is deprecated #15

Closed gravitycode closed 7 years ago

gravitycode commented 7 years ago

The compiled sources use PropTypes from react library directly and React.PropTypes is deprecated as of React v15.5. We have to use the prop-types library instead.

var _react = require('react');
var eitherStringOrInteger = _react.PropTypes.oneOfType([_react.PropTypes.string, _react.PropTypes.number]);
gravitycode commented 7 years ago

I saw you update the library 13 days ago with the fix.