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

17 lines
356 B
JavaScript
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.logoutAll
}
]
2016-11-06 01:53:56 +05:30
});