index.tsx 282 B

123456789101112131415
  1. import { DefaultFooter } from '@ant-design/pro-components';
  2. import React from 'react';
  3. const Footer: React.FC = () => {
  4. return (
  5. <DefaultFooter
  6. copyright="2025 Copyright 趣程"
  7. style={{
  8. background: 'none',
  9. }}
  10. />
  11. );
  12. };
  13. export default Footer;