import { createContext } from 'react'; import { Organization } from '@/types.ts'; interface NavigationContextType { // Actions viewOrganization: (org: Organization) => void; handleBackNavigation: () => void; handleFooterNavigate: (path: string) => void; } export const NavigationContext = createContext(undefined);