import React, { Fragment } from 'react'; import { Layout, Icon } from 'antd'; import GlobalFooter from '../components/GlobalFooter'; const { Footer } = Layout; const FooterView = () => ( <Footer style={{ padding: 0 }}> <GlobalFooter links={[ { key: 'Pro ι¦ι‘΅', title: 'Pro ι¦ι‘΅', href: 'http://pro.ant.design', 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', href: 'http://ant.design', blankTarget: true, }, ]} copyright={ <Fragment> Copyright <Icon type="copyright" /> 2018 θθιζδ½ιͺζζ―ι¨εΊε </Fragment> } /> </Footer> ); export default FooterView;