14 lines
284 B
TypeScript
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>
|
||
|
|
)
|
||
|
|
}
|