2020-06-04 19:41:27 +03:00
|
|
|
|
import { defineMessages } from 'react-intl';
|
2019-12-07 13:28:52 +02:00
|
|
|
|
import factory from '../factory';
|
2016-05-22 21:58:43 +03:00
|
|
|
|
import Body from './ResendActivationBody';
|
|
|
|
|
|
2020-06-04 19:41:27 +03:00
|
|
|
|
const messages = defineMessages({
|
|
|
|
|
title: 'Did not received an E‑mail',
|
|
|
|
|
sendNewEmail: 'Send new E‑mail',
|
|
|
|
|
alreadyHaveCode: 'Already have a code',
|
|
|
|
|
});
|
|
|
|
|
|
2016-07-24 13:17:41 +03:00
|
|
|
|
export default factory({
|
2020-05-24 02:08:24 +03:00
|
|
|
|
title: messages.title,
|
|
|
|
|
body: Body,
|
|
|
|
|
footer: {
|
|
|
|
|
color: 'blue',
|
|
|
|
|
label: messages.sendNewEmail,
|
|
|
|
|
},
|
|
|
|
|
links: {
|
2020-06-04 19:41:27 +03:00
|
|
|
|
label: messages.alreadyHaveCode,
|
2020-05-24 02:08:24 +03:00
|
|
|
|
},
|
2016-07-24 13:17:41 +03:00
|
|
|
|
});
|