index.jsx 806 Bytes
Newer Older
wuhao's avatar
wuhao committed
1 2 3 4 5 6 7 8 9
import { useIntl } from "umi";
import { GithubOutlined } from "@ant-design/icons";
import { DefaultFooter } from "@ant-design/pro-layout";

const Footer = () => {
  const intl = useIntl();
  const currentYear = new Date().getFullYear();
  return (
    <DefaultFooter
wuhao's avatar
wuhao committed
10
      copyright={`${currentYear} 江苏南高智能装备创新中心出品`}
wuhao's avatar
wuhao committed
11
      links={[
krysent's avatar
krysent committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
        // {
        //   key: "Ant Design Pro",
        //   title: "JiangSuNanGao",
        //   blankTarget: true,
        // },
        // {
        //   key: "github",
        //   title: <GithubOutlined />,
        //   blankTarget: true,
        // },
        // {
        //   key: "Designed By Wuhao",
        //   title: "Designed By Wuhao",
        //   blankTarget: true,
        // },
wuhao's avatar
wuhao committed
27 28 29 30 31 32
      ]}
    />
  );
};

export default Footer;