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 (