index.tsx 259 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. style={{
  7. background: 'none',
  8. }}
  9. links={[]}
  10. />
  11. );
  12. };
  13. export default Footer;