Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
import * as tslib_1 from "tslib";
// modules
import React from 'react';
import { observer } from 'xmobx/mobx-react';
// local
import { wording } from './fixture';
import { ResetPasswordFormWrapper, PasswordTitle } from './styled';
import { ResetPasswordForm } from './Forms';
let ResetPassword = class ResetPassword extends React.Component {
    render() {
        const { onResetOption, onSignIn, onNext } = this.props;
        return (React.createElement(ResetPasswordFormWrapper, null,
            React.createElement(PasswordTitle, { text: wording.resetTitle }),
            React.createElement(ResetPasswordForm, { onResetSubmit: onResetOption, onResetCancel: onSignIn, onNext: onNext })));
    }
};
ResetPassword = tslib_1.__decorate([
    observer
], ResetPassword);
export default ResetPassword;
export { ResetPassword };
//# sourceMappingURL=ResetPassword.js.map