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