Files
web-menu-react-version-/src/layouts/app/FooterNav.tsx
2025-10-04 18:22:24 +03:00

14 lines
302 B
TypeScript

import { Layout } from 'antd';
const { Footer } = Layout;
type FooterNavProps = React.HTMLAttributes<HTMLDivElement>;
const FooterNav = ({ ...others }: FooterNavProps) => {
return (
<Footer {...others}>AntD Dashboard © 2023 Created by Design Sparx</Footer>
);
};
export default FooterNav;