index.js 383 B

1234567891011
  1. import React from 'react';
  2. export default props => (
  3. <div className="footer">
  4. <p className="footer__us">
  5. TOP-company
  6. "<span className="footer__us us__inline--red">T</span>est.<span className="footer__us us__inline--green">i</span>o"
  7. </p>
  8. <p className="footer__copyright">&copy; 2018, "Test.io", all right reserved</p>
  9. </div>
  10. )