movie-web/src/pages/layouts/PageLayout.tsx

12 lines
283 B
TypeScript
Raw Normal View History

2023-08-20 18:45:07 +02:00
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>
);
}