Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { usePathname } from 'next/navigation'
export function ReadPathname() {
const pathname = usePathname()
return (
<div id="pathname" data-pathname={pathname}>
{pathname}
</div>
)
}