import { GithubOutlined } from '@ant-design/icons'; import { DefaultFooter } from '@ant-design/pro-components'; const Footer = () => { const defaultMessage = '江苏南高'; const currentYear = new Date().getFullYear(); return ( <DefaultFooter style={{ background: 'none', }} copyright={`${currentYear} ${defaultMessage}`} links={ [ // { // key: 'basepro', // title: 'basepro', // href: 'https://pro.ant.design', // blankTarget: true, // }, // { // key: 'github', // title: <GithubOutlined />, // href: 'https://github.com/ant-design/ant-design-pro', // blankTarget: true, // }, // { // key: 'Ant Design', // title: 'Ant Design', // href: 'https://ant.design', // blankTarget: true, // }, ] } /> ); }; export default Footer;