web-humas-fe/components/layout/satker-layout.tsx

20 lines
391 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
"use client";
import React from "react";
import FooterSatker from "./navbar/FooterSatker";
import NavbarSatker from "./navbar/NavbarSatker";
interface Props {
children: React.ReactNode;
pageTitle?: string;
}
export const SatkerLayout = ({ children, pageTitle }: Props) => {
return (
<section>
<NavbarSatker />
{children}
<FooterSatker />
</section>
);
};