mirror of
				https://github.com/elyby/accounts-frontend.git
				synced 2025-05-31 14:11:58 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			482 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			482 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { defineMessages } from 'react-intl';
 | 
						|
import factory from '../factory';
 | 
						|
import Body from './PasswordBody';
 | 
						|
 | 
						|
const messages = defineMessages({
 | 
						|
    passwordTitle: 'Enter password',
 | 
						|
    signInButton: 'Sign in',
 | 
						|
    forgotPassword: 'Forgot password',
 | 
						|
});
 | 
						|
 | 
						|
export default factory({
 | 
						|
    title: messages.passwordTitle,
 | 
						|
    body: Body,
 | 
						|
    footer: {
 | 
						|
        color: 'green',
 | 
						|
        label: messages.signInButton,
 | 
						|
    },
 | 
						|
    links: {
 | 
						|
        label: messages.forgotPassword,
 | 
						|
    },
 | 
						|
});
 |