mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-15 01:38:59 +05:30
17 lines
366 B
JavaScript
17 lines
366 B
JavaScript
import factory from 'components/auth/factory';
|
|
|
|
import messages from './Activation.intl.json';
|
|
import Body from './ActivationBody';
|
|
|
|
export default factory({
|
|
title: messages.accountActivationTitle,
|
|
body: Body,
|
|
footer: {
|
|
color: 'blue',
|
|
label: messages.confirmEmail
|
|
},
|
|
links: {
|
|
label: messages.didNotReceivedEmail
|
|
}
|
|
});
|