import React from "react"; import { useTranslation } from "react-i18next"; import { ModalBackdrop } from "#/components/shared/modals/modal-backdrop"; import { ModalBody } from "#/components/shared/modals/modal-body"; import { I18nKey } from "#/i18n/declaration"; import AllHandsLogo from "#/assets/branding/all-hands-logo.svg?react"; export function ReauthModal() { const { t } = useTranslation(); return (

{t(I18nKey.AUTH$LOGGING_BACK_IN)}

); }