import React from 'react'; import { useTranslation, Trans } from 'react-i18next'; import { goToVerdaccioWebsite } from '../../utils/windows'; import { Wrapper, Left, Right, Earth, Flags, Love, Flag, Logo, Inner, ToolTip } from './styles'; /* eslint-disable react/jsx-key */ const Footer: React.FC = () => { const { t } = useTranslation(); return ( ]} i18nKey="footer.made-with-love-on" /> {t('footer.powered-by')} {`/ ${window.VERDACCIO_VERSION}`} ); }; export default Footer;