ChFlick/blogstoph

View on GitHub
src/components/Footer.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';

const Footer = (props) => (
    <footer>
        <hr className="bar--light-grey" />
        <div className="copyright">Copyright © Christoph Flick 2018</div>
    </footer>
);

export default Footer;