summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage/components/backstage_navbar.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/backstage/components/backstage_navbar.jsx')
-rw-r--r--webapp/components/backstage/components/backstage_navbar.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/backstage/components/backstage_navbar.jsx b/webapp/components/backstage/components/backstage_navbar.jsx
index 8e1b6bb27..c3a9feec8 100644
--- a/webapp/components/backstage/components/backstage_navbar.jsx
+++ b/webapp/components/backstage/components/backstage_navbar.jsx
@@ -1,3 +1,5 @@
+import PropTypes from 'prop-types';
+
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
@@ -9,7 +11,7 @@ import {Link} from 'react-router/es6';
export default class BackstageNavbar extends React.Component {
static get propTypes() {
return {
- team: React.PropTypes.object.isRequired
+ team: PropTypes.object.isRequired
};
}