Gitako/src/components/FileExplorer/hooks/useGetCurrentPath.tsx
2022-05-29 17:05:04 +08:00

6 lines
216 B
TypeScript

import { platform } from 'platforms'
import { useCallback } from 'react'
export function useGetCurrentPath({ branchName }: MetaData) {
return useCallback(() => platform.getCurrentPath(branchName), [branchName])
}