PrivateLegacyPages.tsx 439 B

12345678910111213141516
  1. import React, { FC, memo } from 'react';
  2. import { useTranslation } from 'react-i18next';
  3. const PrivateLegacyPages: FC = memo(() => {
  4. const { t } = useTranslation();
  5. return (
  6. <div className="grw-prvt-legacy-pages p-3">
  7. <a href="/private-legacy-pages?q=[nq:PrivateLegacyPages]" className="h5">
  8. <i className="icon-drawer mr-2"></i> PrivateLegacyPages
  9. </a>
  10. </div>
  11. );
  12. });
  13. export default PrivateLegacyPages;