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

13 lines
240 B
TypeScript

'use client'
import { usePathname } from 'next/navigation';
import React from 'react'
export default function PortalPPID() {
const pathname = usePathname();
console.log(pathname)
return (
<div>portalPPID</div>
)
}