import React from 'react' import { Trans, useTranslation } from 'react-i18next' export interface TranslatedLinkProps { href: string; i18nKey: string; } const TranslatedLink: React.FC = ({ href, i18nKey }) => { useTranslation() return ( ) } export { TranslatedLink }