accounts-frontend/packages/app/components/auth/chooseAccount/ChooseAccount.ts

17 lines
317 B
TypeScript
Raw Normal View History

2019-12-07 16:58:52 +05:30
import factory from '../factory';
2016-11-06 01:53:56 +05:30
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
});