#
luxiaotao1123
2024-02-20 4d2b6e57ad8afac8e7c314f5e88de3abe952f99c
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;