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

22 lines
480 B
TypeScript
Raw Normal View History

2024-02-05 09:37:05 +00:00
"use client";
import React from "react";
import { PPIDNavbar } from "../Portal PPID/ppid-navbar";
import PPIDBanner from "../Portal PPID/ppid-banner";
import PPIDbody from "../Portal PPID/PpidMain";
interface Props {
children: React.ReactNode;
pageTitle?: string;
}
export const PPIDLayout = ({ children, pageTitle }: Props) => {
return (
<section>
<PPIDNavbar />
<PPIDBanner />
<PPIDbody />
</section>
);
};