Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 3x 2x 2x | import { Trans, useTranslation } from 'next-i18next'
import AlertBlock from '../AlertBlock'
import ExternalLink from '../ExternalLink'
export const CheckStatusNotAcceptable = () => {
const { t } = useTranslation(['status', 'common'])
return (
<>
<h1 data-testid="not-acceptable" className="h1" tabIndex={-1}>
{t('not-acceptable.cannot-process')}
</h1>
<AlertBlock page="status-invalid" />
<p>{t('not-acceptable.explanation')}</p>
<p>
<Trans
i18nKey="not-acceptable.contact-us"
ns="status"
components={{
Link: <ExternalLink href={t('common:contact-us-link')} />,
}}
/>
</p>
</>
)
}
export default CheckStatusNotAcceptable
|