This commit is contained in:
natib21
2026-07-10 11:25:59 +00:00
parent 2696ca7498
commit e6e44e773b
1146 changed files with 200266 additions and 90527 deletions

View File

@@ -1,28 +1,28 @@
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<typeof useUnit> | undefined;
// Create context with undefined as default
const UnitContext = createContext<UnitContextType>(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 (
<UnitContext.Provider value={unitQuery}>
{children}
</UnitContext.Provider>
);
};
// 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;
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<typeof useUnit> | undefined;
// Create context with undefined as default
const UnitContext = createContext<UnitContextType>(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 (
<UnitContext.Provider value={unitQuery}>
{children}
</UnitContext.Provider>
);
};
// 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;
};