mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-26 15:00:23 +05:30
23 lines
600 B
TypeScript
23 lines
600 B
TypeScript
import React from 'react';
|
||
import { FormattedMessage as Message, defineMessages } from 'react-intl';
|
||
|
||
import factory from '../factory';
|
||
import Body from './ActivationBody';
|
||
|
||
const messages = defineMessages({
|
||
accountActivationTitle: 'Account activation',
|
||
didNotReceivedEmail: 'Did not received E‑mail?',
|
||
});
|
||
|
||
export default factory({
|
||
title: messages.accountActivationTitle,
|
||
body: Body,
|
||
footer: {
|
||
color: 'blue',
|
||
children: <Message key="confirmEmail" defaultMessage="Confirm E‑mail" />,
|
||
},
|
||
links: {
|
||
label: messages.didNotReceivedEmail,
|
||
},
|
||
});
|