summaryrefslogtreecommitdiffstats
path: root/web/react/components/needs_team.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/needs_team.jsx')
-rw-r--r--web/react/components/needs_team.jsx20
1 files changed, 0 insertions, 20 deletions
diff --git a/web/react/components/needs_team.jsx b/web/react/components/needs_team.jsx
deleted file mode 100644
index 33b9cd37e..000000000
--- a/web/react/components/needs_team.jsx
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-import * as GlobalActions from '../action_creators/global_actions.jsx';
-
-export default class NeedsTeam extends React.Component {
- componentWillMount() {
- GlobalActions.loadTeamRequiredPage();
- }
- render() {
- return this.props.children;
- }
-}
-
-NeedsTeam.defaultProps = {
-};
-
-NeedsTeam.propTypes = {
- children: React.PropTypes.object
-};