mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-30 11:54:12 -05:00
7c8014d791
[web] Tear down features-page split test GitOrigin-RevId: 346064bea8775033d226f4405843717b380085fd
20 lines
433 B
TypeScript
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
|