movie-web/src/pages/layouts/PageLayout.tsx
2023-08-20 18:46:13 +02:00

12 lines
283 B
TypeScript

import { FooterView } from "@/components/layout/Footer";
import { Navigation } from "@/components/layout/Navigation";
export function PageLayout(props: { children: React.ReactNode }) {
return (
<FooterView>
<Navigation />
{props.children}
</FooterView>
);
}