mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 00:29:19 +05:30
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
import factory from '../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,
|
|
},
|
|
],
|
|
});
|