import type { FC } from 'react'; import React from 'react'; import { useTranslation } from 'next-i18next'; export const CompleteUserRegistration: FC = () => { const { t } = useTranslation(); return (

{t('login.registration_successful')}

{/* If the transition source is "/login", use tag since the transition will not occur if next/link is used. */} login{t('Sign in is here')}
); };