import { FC } from 'react' import { useTranslation } from 'react-i18next' export const AccessAttemptScreen: FC<{ loadingScreenBrandHeight: string inflight: boolean accessError: string | boolean }> = ({ loadingScreenBrandHeight, inflight, accessError }) => { const { t } = useTranslation() return (

{t('join_project')} {inflight && }

{accessError && (

{accessError === 'not_found' ? (

Project not found

) : (
{t('token_access_failure')}

{t('home')}

)}
)}
) } const LoadingScreenEllipses = () => ( . . . )