mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-03-03 06:32:49 +05:30
21 lines
459 B
JavaScript
21 lines
459 B
JavaScript
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}
|
|
}
|
|
]
|
|
});
|