14 lines
302 B
TypeScript
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;
|