mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-30 10:42:34 +05:30
22 lines
535 B
TypeScript
22 lines
535 B
TypeScript
import { defineMessages } from 'react-intl';
|
||
import factory from '../factory';
|
||
import Body from './ActivationBody';
|
||
|
||
const messages = defineMessages({
|
||
accountActivationTitle: 'Account activation',
|
||
confirmEmail: 'Confirm E‑mail',
|
||
didNotReceivedEmail: 'Did not received E‑mail?',
|
||
});
|
||
|
||
export default factory({
|
||
title: messages.accountActivationTitle,
|
||
body: Body,
|
||
footer: {
|
||
color: 'blue',
|
||
label: messages.confirmEmail,
|
||
},
|
||
links: {
|
||
label: messages.didNotReceivedEmail,
|
||
},
|
||
});
|