Footer.jsx 317 B

1234567891011
  1. import { Footer } from 'antd/lib/layout/layout';
  2. import React from 'react';
  3. import { CUserNavIcon } from './header/Header';
  4. export const FooterComponent = () => {
  5. return (
  6. <Footer style={{ position: 'fixed', zIndex: 3, width: '100%', bottom: 0 }}>
  7. <CUserNavIcon />
  8. </Footer>
  9. )
  10. };