diff options
author | Arul.Nambi <arul.nambi@amdocs.com> | 2018-09-05 14:44:15 -0400 |
---|---|---|
committer | Arul.Nambi <arul.nambi@amdocs.com> | 2018-09-05 14:46:13 -0400 |
commit | 6b408bc2ea74ffbe3985c7f90211e59a2f00fad2 (patch) | |
tree | d0e3bab15d5c5587ef857051cce68bd389f6d20f /src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx | |
parent | b68cd9cee606372747f6fee4a864de994b0518a7 (diff) |
Upgrade to react 16
Issue-ID: AAI-1576
Change-Id: I2a3035c7922ccabdca446e76341adf6ca8785155
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx')
-rw-r--r-- | src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx b/src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx index 332cdcf..7732951 100644 --- a/src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx +++ b/src/generic-components/dynamicViewLoader/dynamicViewLoader.jsx @@ -19,6 +19,7 @@ * ============LICENSE_END========================================================= */ import React, {Component} from 'react'; +import { PropTypes } from 'prop-types'; import {connect} from 'react-redux'; import DateRangeSelector from 'generic-components/dateRangeSelector/DateRangeSelector.jsx'; @@ -54,8 +55,8 @@ let mapActionToProps = (dispatch) => { class DynamicViewLoader extends Component { static propTypes = { - viewTitle: React.PropTypes.string, - layoutSource: React.PropTypes.object + viewTitle: PropTypes.string, + layoutSource: PropTypes.object }; componentWillMount() { |