1234567891011121314151617181920212223242526272829303132333435 |
- import { GithubOutlined } from '@ant-design/icons';
- import { DefaultFooter } from '@ant-design/pro-components';
- import React from 'react';
- const Footer: React.FC = () => {
- return (
- <DefaultFooter
- style={{
- background: 'none',
- }}
- links={[
- {
- key: '小说管理后台',
- title: '小说管理后台',
- href: 'https://pro.ant.design',
- blankTarget: true,
- },
- {
- key: 'github',
- title: <GithubOutlined />,
- href: 'https://github.com/ant-design/ant-design-pro',
- blankTarget: true,
- },
- {
- key: 'Ant Design',
- title: 'Ant Design',
- href: 'https://ant.design',
- blankTarget: true,
- },
- ]}
- />
- );
- };
- export default Footer;
|