import React, { FC } from 'react'; import { useTranslation } from 'next-i18next'; import Link from 'next/link'; 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. */} {t('Sign in is here')}
); };