File size: 343 Bytes
f871fed
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  }
}