pjb
2025-03-08 83b51a5a0774ea8ecb9a06304af3b956a21307c8
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;