accounts-frontend/packages/app/components/auth/resendActivation/ResendActivation.tsx
2020-07-24 19:19:19 +03:00

23 lines
568 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import { FormattedMessage as Message, defineMessages } from 'react-intl';
import factory from '../factory';
import Body from './ResendActivationBody';
const messages = defineMessages({
title: 'Did not received an Email',
alreadyHaveCode: 'Already have a code',
});
export default factory({
title: messages.title,
body: Body,
footer: {
color: 'blue',
children: <Message key="sendNewEmail" defaultMessage="Send new Email" />,
},
links: {
label: messages.alreadyHaveCode,
},
});