mirror of
				https://github.com/elyby/accounts-frontend.git
				synced 2025-05-31 14:11:58 +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,
 | 
						||
    },
 | 
						||
});
 |