footer.jsx 468 B

123456789101112131415
  1. import React from 'react';
  2. import './certify.less';
  3. const Footer = React.createClass({
  4. render() {
  5. return (
  6. <div className="footer">
  7. <p>公司地址 联系方式公司地址 公司地址 联系方式 公司地址 公司地址 联系方式 公司地址</p>
  8. <p>公司地址 联系方式公司地址 公司地址 联系方式公司地址</p>
  9. </div>
  10. )
  11. }
  12. });
  13. export default Footer;