NotCreatablePage.tsx 495 B

12345678910111213141516171819
  1. import type { FC } from 'react';
  2. import React from 'react';
  3. import { useTranslation } from 'next-i18next';
  4. export const NotCreatablePage: FC = () => {
  5. const { t } = useTranslation();
  6. return (
  7. <div className="row not-found-message-row">
  8. <div className="col-md-12">
  9. <h2 className="text-muted">
  10. <span className="material-symbols-outlined" aria-hidden="true">block</span>
  11. { t('not_creatable_page.message') }
  12. </h2>
  13. </div>
  14. </div>
  15. );
  16. };