#
luxiaotao1123
2024-02-18 8527d83c19bf5047a0e6dfd1363d74b51acb0e8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;