summaryrefslogtreecommitdiffstats
path: root/webapp/components/channel_invite_button.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/channel_invite_button.jsx')
-rw-r--r--webapp/components/channel_invite_button.jsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/webapp/components/channel_invite_button.jsx b/webapp/components/channel_invite_button.jsx
index c96b687a8..dbdf68246 100644
--- a/webapp/components/channel_invite_button.jsx
+++ b/webapp/components/channel_invite_button.jsx
@@ -5,15 +5,17 @@ import SpinnerButton from 'components/spinner_button.jsx';
import {addUserToChannel} from 'actions/channel_actions.jsx';
+import PropTypes from 'prop-types';
+
import React from 'react';
import {FormattedMessage} from 'react-intl';
export default class ChannelInviteButton extends React.Component {
static get propTypes() {
return {
- user: React.PropTypes.object.isRequired,
- channel: React.PropTypes.object.isRequired,
- onInviteError: React.PropTypes.func.isRequired
+ user: PropTypes.object.isRequired,
+ channel: PropTypes.object.isRequired,
+ onInviteError: PropTypes.func.isRequired
};
}