NotCreatablePage.tsx 461 B

123456789101112131415161718
  1. import React, { FC } from 'react';
  2. import { useTranslation } from 'next-i18next';
  3. export const NotCreatablePage: FC = () => {
  4. const { t } = useTranslation();
  5. return (
  6. <div className="row not-found-message-row">
  7. <div className="col-md-12">
  8. <h2 className="text-muted">
  9. <i className="icon-ban mr-1" aria-hidden="true"></i>
  10. { t('not_creatable_page.could_not_creata_path') }
  11. </h2>
  12. </div>
  13. </div>
  14. );
  15. };