UNPKG

presale-demo-pe

Version:

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

20 lines (16 loc) 432 B
import React from 'react'; import Logo from '../Logo'; import './Footer.css'; const Footer = () => { return ( <footer className="footer"> <div className="footer__logo"> <Logo big={true} /> </div> <p className="footer__copyright"> <small>2017 All Rights Reserved. SONM Team.</small> </p> </footer> ) }; export default Footer;