Files
HKSingleParty/03_source/frontend/src/auth/context/auth-context.tsx
louiscklaw b7cd25b614 build ok,
2025-06-15 11:28:24 +08:00

7 lines
248 B
TypeScript

import { createContext } from 'react';
import type { AuthContextValue } from '../types';
// ----------------------------------------------------------------------
export const AuthContext = createContext<AuthContextValue | undefined>(undefined);