footer.jsx 498 B

123456789101112131415161718
  1. import React from 'react';
  2. import './portal.less';
  3. const Footer = React.createClass({
  4. render() {
  5. return (
  6. <div className="footer">
  7. <div className="container">
  8. <a href="#">联系我们</a>
  9. <a href="#">Copyright © 2016-2017 阿凡提 版权所有</a>
  10. <a href="#">技术支持:湖南智明科技有限公司</a>
  11. </div>
  12. </div>
  13. )
  14. }
  15. });
  16. export default Footer;