accounts-frontend/packages/app/components/auth/recoverPassword/RecoverPassword.ts

22 lines
477 B
TypeScript
Raw Normal View History

import { defineMessages } from 'react-intl';
2019-12-07 16:58:52 +05:30
import factory from '../factory';
import Body from './RecoverPasswordBody';
const messages = defineMessages({
title: 'Restore password',
contactSupport: 'Contact support',
change: 'Change password',
});
2016-07-24 15:47:41 +05:30
export default factory({
2020-05-24 04:38:24 +05:30
title: messages.title,
body: Body,
footer: {
color: 'lightViolet',
label: messages.change,
},
links: {
label: messages.contactSupport,
},
2016-07-24 15:47:41 +05:30
});