AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
'use client'
import { usePathname } from 'next/navigation'
import { getVersionInfoFromPath } from '@/app/lib/version-utils'
/**
* App Router compatible version hook
*/
export function useAppRouterVersion() {
const pathname = usePathname()
return getVersionInfoFromPath(pathname ?? '')
}