mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-11 15:59:06 +05:30
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
|
// @flow
|
||
|
import factory from 'components/auth/factory';
|
||
|
|
||
|
import Body from './MfaBody';
|
||
|
import messages from './Mfa.intl.json';
|
||
|
import passwordMessages from '../password/Password.intl.json';
|
||
|
|
||
|
export default factory({
|
||
|
title: messages.enterTotp,
|
||
|
body: Body,
|
||
|
footer: {
|
||
|
color: 'green',
|
||
|
label: passwordMessages.signInButton
|
||
|
}
|
||
|
});
|