トップに戻る
tags
'use client' import { usePathname } from 'next/navigation'; // http://localhost:3001/test1?foo=bar へアクセスした場合 「/test1」 になります const pathname = usePathname() // /test1
edit