mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
6 lines
216 B
TypeScript
6 lines
216 B
TypeScript
import { platform } from 'platforms'
|
|
import { useCallback } from 'react'
|
|
|
|
export function useGetCurrentPath({ branchName }: MetaData) {
|
|
return useCallback(() => platform.getCurrentPath(branchName), [branchName])
|
|
}
|