open-notebook / frontend /src /lib /hooks /use-navigation.ts
C2MV's picture
Deploy Open Notebook to HuggingFace Spaces
bd0c393
Raw
History Blame Contribute Delete
343 Bytes
import { useNavigationStore } from '@/lib/stores/navigation-store'
export function useNavigation() {
const store = useNavigationStore()
return {
setReturnTo: store.setReturnTo,
clearReturnTo: store.clearReturnTo,
getReturnPath: store.getReturnPath,
getReturnLabel: store.getReturnLabel,
returnTo: store.returnTo
}
}