summaryrefslogtreecommitdiffstats
path: root/webapp/components/help/help_controller.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/help/help_controller.jsx')
-rw-r--r--webapp/components/help/help_controller.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/help/help_controller.jsx b/webapp/components/help/help_controller.jsx
index 2e21861c1..b58a93320 100644
--- a/webapp/components/help/help_controller.jsx
+++ b/webapp/components/help/help_controller.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.
@@ -7,7 +9,7 @@ import ReactDOM from 'react-dom';
export default class HelpController extends React.Component {
static get propTypes() {
return {
- children: React.PropTypes.node.isRequired
+ children: PropTypes.node.isRequired
};
}