Vercel/src/app/(static)/layout.tsx
2023-09-10 23:20:15 -05:00

14 lines
214 B
TypeScript

import FooterStatic from '@/components/FooterStatic';
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<>
{children}
<FooterStatic />
</>
);
}