// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import EmailToSSO from './email_to_sso.jsx'; import SSOToEmail from './sso_to_email.jsx'; export default class ClaimAccount extends React.Component { constructor(props) { super(props); this.state = {}; } render() { let content; if (this.props.email === '') { content =

{'No email specified.'}

; } else if (this.props.currentType === '' && this.props.newType !== '') { content = ( ); } else { content = ( ); } return (
{content}
); } } ClaimAccount.defaultProps = { }; ClaimAccount.propTypes = { currentType: React.PropTypes.string.isRequired, newType: React.PropTypes.string.isRequired, email: React.PropTypes.string.isRequired, teamName: React.PropTypes.string.isRequired, teamDisplayName: React.PropTypes.string.isRequired };