NotCreatablePage.tsx 516 B

1234567891011121314151617181920
  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">
  11. block
  12. </span>
  13. {t('not_creatable_page.message')}
  14. </h2>
  15. </div>
  16. </div>
  17. );
  18. };