mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-30 16:18:58 +00:00
14 lines
323 B
TypeScript
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>
|
|
);
|
|
}
|