Repository URL to install this package:
|
Version:
0.0.15 ▾
|
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