mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-04 20:49:41 +05:30
18 lines
366 B
TypeScript
18 lines
366 B
TypeScript
import { defineMessages } from 'react-intl';
|
|
import factory from '../factory';
|
|
import Body from './MfaBody';
|
|
|
|
const messages = defineMessages({
|
|
enterTotp: 'Enter code',
|
|
signInButton: 'Sign in',
|
|
});
|
|
|
|
export default factory({
|
|
title: messages.enterTotp,
|
|
body: Body,
|
|
footer: {
|
|
color: 'green',
|
|
label: messages.signInButton,
|
|
},
|
|
});
|