NotFoundPage.tsx 275 B

1234567891011
  1. import React, { type JSX } from 'react';
  2. import { useTranslation } from 'next-i18next';
  3. export const AdminNotFoundPage = (): JSX.Element => {
  4. const { t } = useTranslation('commons');
  5. return (
  6. <h1 className="title">{t('not_found_page.page_not_exist')}</h1>
  7. );
  8. };