mirror of
https://github.com/sussy-code/smov.git
synced 2026-05-10 12:00:36 +00:00
11 lines
283 B
TypeScript
11 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>
|
|
);
|
|
}
|