// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import MemberListChannel from './member_list_channel.jsx'; import React from 'react'; import {Modal} from 'react-bootstrap'; import {FormattedMessage} from 'react-intl'; export default class ChannelMembersModal extends React.Component { constructor(props) { super(props); this.onHide = this.onHide.bind(this); this.state = { channel: this.props.channel, show: true }; } onHide() { this.setState({show: false}); } render() { return (
{this.props.channel.display_name} { this.props.showInviteModal(); this.onHide(); }} >
); } } ChannelMembersModal.propTypes = { onModalDismissed: React.PropTypes.func.isRequired, showInviteModal: React.PropTypes.func.isRequired, channel: React.PropTypes.object.isRequired };