import React from 'react'; import { year } from '@cleverbeagle/dates'; import { Link } from 'react-router-dom'; import { Grid } from 'react-bootstrap'; import './Footer.scss'; const copyrightYear = () => { const currentYear = year(); return currentYear === '2017' ? '2017' : `2017-${currentYear}`; }; const Footer = () => (

© {copyrightYear()} Application Name

); Footer.propTypes = {}; export default Footer;