import React, { FC, memo } from 'react'; import { useTranslation } from 'react-i18next'; export const PrivateLegacyPagesLink: FC = memo(() => { const { t } = useTranslation(); return ( {t('pagetree.private_legacy_pages')} ); });