/* eslint-disable import/no-absolute-path */ import React from 'react'; import { year } from '@cleverbeagle/dates'; import { Link } from 'react-router-dom'; import { Grid } from 'react-bootstrap'; import { translate } from 'react-i18next'; import { testId } from '/imports/ui/components/Utils/TestUtils'; import './Footer.scss'; const copyrightYear = () => { const currentYear = year(); // moment(new Date()).format('YY'); return currentYear === '2017' ? '2017' : `2017-${currentYear}`; }; const Footer = (props) => { const { t } = props; return (

© Copyleft {copyrightYear()} {t('OrgName')}{t('OrgName')}

); }; Footer.propTypes = {}; export default translate([], { wait: true })(Footer);