// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import React from 'react'; import * as Utils from 'utils/utils.jsx'; import DropdownSetting from './dropdown_setting.jsx'; import {FormattedMessage} from 'react-intl'; const CONNECTION_SECURITY_HELP_TEXT = (
); export default class ConnectionSecurityDropdownSetting extends React.Component { render() { return ( } currentValue={this.props.currentValue} handleChange={this.props.handleChange} isDisabled={this.props.isDisabled} helpText={CONNECTION_SECURITY_HELP_TEXT} margin='small' /> ); } } ConnectionSecurityDropdownSetting.defaultProps = { }; ConnectionSecurityDropdownSetting.propTypes = { currentValue: React.PropTypes.string.isRequired, handleChange: React.PropTypes.func.isRequired, isDisabled: React.PropTypes.bool.isRequired };