summaryrefslogtreecommitdiffstats
path: root/webapp/components/create_team/create_team_controller.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/create_team/create_team_controller.jsx')
-rw-r--r--webapp/components/create_team/create_team_controller.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/webapp/components/create_team/create_team_controller.jsx b/webapp/components/create_team/create_team_controller.jsx
index 71904a93c..e06ea9465 100644
--- a/webapp/components/create_team/create_team_controller.jsx
+++ b/webapp/components/create_team/create_team_controller.jsx
@@ -8,6 +8,8 @@ import TeamStore from 'stores/team_store.jsx';
import {FormattedMessage} from 'react-intl';
import {browserHistory, Link} from 'react-router/es6';
+import PropTypes from 'prop-types';
+
import React from 'react';
export default class CreateTeamController extends React.Component {
@@ -90,5 +92,5 @@ export default class CreateTeamController extends React.Component {
}
CreateTeamController.propTypes = {
- children: React.PropTypes.node
+ children: PropTypes.node
};