accounts-frontend/src/components/auth/chooseAccount/ChooseAccount.jsx

21 lines
459 B
React
Raw Normal View History

2016-11-06 01:53:56 +05:30
import factory from 'components/auth/factory';
import messages from './ChooseAccount.intl.json';
import Body from './ChooseAccountBody';
export default factory({
title: messages.chooseAccountTitle,
body: Body,
footer: {
label: messages.addAccount
},
links: [
{
label: messages.createNewAccount
},
{
label: messages.logoutAll,
payload: {logout: true}
}
]
2016-11-06 01:53:56 +05:30
});