6 lines
247 B
TypeScript
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); |