skyouc
2025-07-07 2a24c69b830d9dc97a8673f5f69418e9f95f3e1b
zy-asrs-flow/src/components/Footer/index.jsx
@@ -1,27 +1,16 @@
import { GithubOutlined } from '@ant-design/icons';
import { DefaultFooter } from '@ant-design/pro-components';
import React from 'react';
const Footer = () => {
  return (
    <DefaultFooter
      style={{
        background: 'none',
      }}
      links={[
        {
          key: 'Vincent Admin',
          title: 'Vincent Admin',
        },
        {
          key: 'github',
          title: <GithubOutlined />,
          href: 'https://github.com/luxiaotao1123',
          blankTarget: true,
        },
      ]}
    />
  );
};
export default Footer;
import { GithubOutlined } from '@ant-design/icons';
import { DefaultFooter } from '@ant-design/pro-components';
import React from 'react';
const Footer = () => {
  return (
    <DefaultFooter
      copyright="@2019 vincent"
      style={{
        background: 'none',
      }}
    />
  );
};
export default Footer;