2024-02-23 12:34:32 +00:00
|
|
|
'use client'
|
|
|
|
|
import { PPIDLayout } from '@/components/layout/PPIDLayout';
|
|
|
|
|
import { usePathname } from 'next/navigation';
|
|
|
|
|
import React, { Children } from 'react'
|
|
|
|
|
|
2024-03-02 15:25:48 +00:00
|
|
|
export default function PPIDProfileLayout({
|
2024-02-23 12:34:32 +00:00
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode
|
|
|
|
|
}) {
|
|
|
|
|
const pathname = usePathname();
|
|
|
|
|
console.log(pathname)
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<PPIDLayout>
|
|
|
|
|
{children}
|
|
|
|
|
</PPIDLayout>
|
|
|
|
|
)
|
|
|
|
|
}
|