Files
kittyFE/kittyurl-frontend/src/context/AuthContext.tsx
2025-12-30 18:32:13 +01:00

6 lines
247 B
TypeScript

// src/context/AuthContext.ts
import { createContext } from 'react';
import type { AuthContextType } from '../types/auth';
// Eksportujemy tylko "pusty" kontekst
export const AuthContext = createContext<AuthContextType | undefined>(undefined);