import type { FC } from 'react'; import React from 'react'; import { useTranslation } from 'next-i18next'; export const NotCreatablePage: FC = () => { const { t } = useTranslation(); return (

{ t('not_creatable_page.message') }

); };