| 123456789101112131415161718192021 |
- import React, { FC, memo } from 'react';
- import { useTranslation } from 'next-i18next';
- import Link from 'next/link';
- export const PrivateLegacyPagesLink: FC = memo(() => {
- const { t } = useTranslation();
- return (
- <Link
- href="/_private-legacy-pages"
- className="h5 grw-private-legacy-pages-anchor text-decoration-none"
- prefetch={false}
- >
- <i className="icon-drawer mr-2"></i> {t('private_legacy_pages.title')}
- </Link>
- );
- });
- PrivateLegacyPagesLink.displayName = 'PrivateLegacyPagesLink';
|