123456789101112131415161718 |
- import React from 'react';
- import './portal.less';
- const Footer = React.createClass({
- render() {
- return (
- <div className="footer">
- <div className="container">
- <a href="#">联系我们</a>
- <a href="#">Copyright © 2016-2017 阿凡提 版权所有</a>
- <a href="#">技术支持:湖南智明科技有限公司</a>
- </div>
- </div>
- )
- }
- });
- export default Footer;
|