// Copyright (c) 2015 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. import PasswordResetSendLink from './password_reset_send_link.jsx'; import PasswordResetForm from './password_reset_form.jsx'; export default class PasswordReset extends React.Component { constructor(props) { super(props); this.state = {}; } render() { if (this.props.isReset === 'false') { return ( ); } return ( ); } } PasswordReset.defaultProps = { isReset: '', teamName: '', teamDisplayName: '', hash: '', data: '' }; PasswordReset.propTypes = { isReset: React.PropTypes.string, teamName: React.PropTypes.string, teamDisplayName: React.PropTypes.string, hash: React.PropTypes.string, data: React.PropTypes.string };