Add collaboration feature
[sdc.git] / openecomp-ui / src / nfvo-components / progressBar / ProgressBar.jsx
index 40720c3..ca5cb3d 100644 (file)
  * permissions and limitations under the License.
  */
 import React from 'react';
+import PropTypes from 'prop-types';
 
 class ProgressBar extends React.Component {
        static propTypes = {
-               label: React.PropTypes.string,
-               now: React.PropTypes.string.isRequired
+               label: PropTypes.string,
+               now: PropTypes.string.isRequired
        }
        render() {
                let {label, now} = this.props;