import { useContext } from 'react'; import { NavigationContext } from '@/contexts/NavigationContext.tsx'; export const useNavigation = () => { const context = useContext(NavigationContext); if (context === undefined) { throw new Error('useNavigation must be used within a NavigationProvider'); } return context; };