mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-05 02:01:55 +01:00
12 lines
283 B
TypeScript
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>
|
|
);
|
|
}
|