next.js/test/e2e/app-dir/app-basepath/components/read-pathname.js
read-pathname.js11 lines207 B
import { usePathname } from 'next/navigation'

export function ReadPathname() {
  const pathname = usePathname()
  return (
    <div id="pathname" data-pathname={pathname}>
      {pathname}
    </div>
  )
}
Quest for Codev2.0.0
/
SIGN IN