| 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', | |
| }} | |
| copyright={`${new Date().getFullYear()} ThunderHub JRX MSY ZYT HXQ LJB`} | |
| /> | |
| ); | |
| }; | |
| export default Footer; |