overleaf/services/web/frontend/js/features/subscription/components/dashboard/premium-features-link.tsx
Mathias Jakobsen 7c8014d791 Merge pull request #15798 from overleaf/mj-features-page-teardown
[web] Tear down features-page split test

GitOrigin-RevId: 346064bea8775033d226f4405843717b380085fd
2023-11-21 09:04:03 +00:00

20 lines
433 B
TypeScript

import { Trans } from 'react-i18next'
function PremiumFeaturesLink() {
const featuresPageLink = (
// translation adds content
// eslint-disable-next-line jsx-a11y/anchor-has-content
<a href="/about/features-overview" />
)
return (
<p>
<Trans
i18nKey="get_most_subscription_by_checking_features"
components={[featuresPageLink]}
/>
</p>
)
}
export default PremiumFeaturesLink