mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
51 lines
1.6 KiB
React
51 lines
1.6 KiB
React
|
import React from 'react';
|
|||
|
import { Row, Col, Select } from '../../../';
|
|||
|
|
|||
|
import './index.less';
|
|||
|
export default class Footer extends React.Component {
|
|||
|
render() {
|
|||
|
return (<footer id="footer">
|
|||
|
<Row>
|
|||
|
<Col span="6" className="footer-col">
|
|||
|
<h2>GitHub</h2>
|
|||
|
<a target="_blank " href="https://github.com/ant-design/ant-design">
|
|||
|
仓库
|
|||
|
</a>
|
|||
|
<a target="_blank" href="https://github.com/ant-design/ant-design/tree/master/style">
|
|||
|
样式
|
|||
|
</a>
|
|||
|
<a target="_blank" href="https://github.com/ant-design/antd-bin">
|
|||
|
开发工具
|
|||
|
</a>
|
|||
|
</Col>
|
|||
|
<Col span="6" className="footer-col">
|
|||
|
<h2>关于我们</h2>
|
|||
|
<a href="https://github.com/alipay/x/issues">博客 - Ant UED</a>
|
|||
|
</Col>
|
|||
|
<Col span="6" className="footer-col">
|
|||
|
<h2>联系我们</h2>
|
|||
|
<a target="_blank" href="https://github.com/ant-design/ant-design/issues">
|
|||
|
反馈和建议
|
|||
|
</a>
|
|||
|
<a target="_blank" href="https://gitter.im/ant-design/ant-design">
|
|||
|
讨论
|
|||
|
</a>
|
|||
|
<a target="_blank" href="http://dwz.cn/2dJ2mg">
|
|||
|
报告 Bug
|
|||
|
</a>
|
|||
|
</Col>
|
|||
|
<Col span="6" className="footer-col">
|
|||
|
<p>©2015 蚂蚁金服体验技术部出品</p>
|
|||
|
<p>
|
|||
|
文档版本:
|
|||
|
<Select defaultValue="0.10.4" size="small">
|
|||
|
<Option value="0.10.4">0.10.4</Option>
|
|||
|
<Option value="0.9.2">0.9.2</Option>
|
|||
|
</Select>
|
|||
|
</p>
|
|||
|
</Col>
|
|||
|
</Row>
|
|||
|
</footer>);
|
|||
|
}
|
|||
|
}
|