mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-10 01:52:04 +05:30
16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
import factory from '../factory';
|
|
import Body from './PasswordBody';
|
|
import messages from './Password.intl.json';
|
|
|
|
export default factory({
|
|
title: messages.passwordTitle,
|
|
body: Body,
|
|
footer: {
|
|
color: 'green',
|
|
label: messages.signInButton,
|
|
},
|
|
links: {
|
|
label: messages.forgotPassword,
|
|
},
|
|
});
|