NotFoundPage.tsx 264 B

12345678
  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 <h1 className="title">{t('not_found_page.page_not_exist')}</h1>;
  6. };