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

16 lines
335 B
TypeScript
Raw Normal View History

2024-03-02 15:25:48 +00:00
'use client'
import { usePathname } from 'next/navigation';
import React from 'react'
export default function SatkerPage() {
const pathname = usePathname();
2024-03-11 15:46:08 +00:00
// console.log(pathname)
const url = pathname.split('satuan-kerja/')[1];
2024-03-02 15:25:48 +00:00
return (
<div className='text-black'>
2024-03-11 15:46:08 +00:00
{url}
2024-03-02 15:25:48 +00:00
</div>
)
}