Footer.js 949 Bytes
Newer Older
jim's avatar
jim committed
1 2
import React, { Fragment } from 'react';
import { Layout, Icon } from 'antd';
3
import GlobalFooter from '../components/GlobalFooter/index';
jim's avatar
jim committed
4 5 6 7 8 9 10 11 12

const { Footer } = Layout;
const FooterView = () => (
  <Footer style={{ padding: 0 }}>
    <GlobalFooter
      links={[
        {
          key: 'Pro ι¦–ι‘΅',
          title: 'Pro ι¦–ι‘΅',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
13
          href: 'https://pro.ant.design',
jim's avatar
jim committed
14 15 16 17 18 19 20 21 22 23 24
          blankTarget: true,
        },
        {
          key: 'github',
          title: <Icon type="github" />,
          href: 'https://github.com/ant-design/ant-design-pro',
          blankTarget: true,
        },
        {
          key: 'Ant Design',
          title: 'Ant Design',
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
25
          href: 'https://ant.design',
jim's avatar
jim committed
26 27 28 29 30 31 32 33 34 35 36 37
          blankTarget: true,
        },
      ]}
      copyright={
        <Fragment>
          Copyright <Icon type="copyright" /> 2018 θš‚θšι‡‘ζœδ½“ιͺŒζŠ€ζœ―部出品
        </Fragment>
      }
    />
  </Footer>
);
export default FooterView;