import React, { createContext, useContext, ReactNode } from 'react'; import { useUnit } from '@/user-management/hooks/useUnit'; // Define the context type to match the return type of useUnit hook type UnitContextType = ReturnType | undefined; // Create context with undefined as default const UnitContext = createContext(undefined); // Provider component export const UnitProvider: React.FC<{ children: ReactNode }> = ({ children }) => { const unitQuery = useUnit(); // or whatever hook/query you're using to get units return ( {children} ); }; // Custom hook to use the context export const useUnitContext = () => { const context = useContext(UnitContext); if (context === undefined) { throw new Error('useUnitContext must be used within a UnitProvider'); } return context; };