import { Button } from 'antd' import React, { FC } from 'react' import { useGuardContext } from '../../../../context/global/context' import { GuardScenes } from '../../types' import './style.less' import { useTranslation } from 'react-i18next' export interface RegisterFormFooterProps { loading: boolean } export const RegisterFormFooter: FC = ({ loading, }) => { const { setValue, state: { config }, } = useGuardContext() const { t } = useTranslation() return ( <>
{t('common.alreadyHasAcc')}
) }