web-humas-fe/app/portal-ppid/page.tsx

23 lines
533 B
TypeScript

'use client'
import PPIDbody from '@/components/Portal PPID/PpidMain';
import PPIDBanner from '@/components/Portal PPID/ppid-banner';
import { PPIDLayout } from '@/components/layout/PPIDLayout';
import { usePathname } from 'next/navigation';
import React, { Children } from 'react'
export default function PortalPPID({
children,
}: {
children: React.ReactNode
}) {
const pathname = usePathname();
console.log(pathname)
return (
<>
<PPIDBanner />
<PPIDbody />
</>
)
}