import React from 'react'; import { useTranslation } from 'next-i18next'; export const AdminNotFoundPage = (): JSX.Element => { const { t } = useTranslation('commons'); return (

{t('not_found_page.page_not_exist')}

); };