p-stream/src/pages/layouts/HomeLayout.tsx
2023-08-20 18:46:13 +02:00

14 lines
323 B
TypeScript

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