Initial commit
This commit is contained in:
13
src/layouts/app/FooterNav.tsx
Normal file
13
src/layouts/app/FooterNav.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user