import React, { Component } from 'react'; import { Trans, withNamespaces } from 'react-i18next'; import { REPOSITORY, LANGUAGES, PRIVACY_POLICY_LINK } from '../../helpers/constants'; import i18n from '../../i18n'; import './Footer.css'; import './Select.css'; class Footer extends Component { getYear = () => { const today = new Date(); return today.getFullYear(); }; changeLanguage = (event) => { i18n.changeLanguage(event.target.value); } render() { return ( ); } } export default withNamespaces()(Footer);