web-humas-fe/app/portal-ppid/satuan-kerja/[satker-name]/page.tsx

14 lines
284 B
TypeScript

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