import { Layout } from 'antd'; const { Footer } = Layout; type FooterNavProps = React.HTMLAttributes; const FooterNav = ({ ...others }: FooterNavProps) => { return ( ); }; export default FooterNav;