Files
Charon/frontend/src/hooks/useAuth.ts
2026-01-26 19:22:05 +00:00

11 lines
294 B
TypeScript

import { useContext } from 'react';
import { AuthContext } from '../context/AuthContextValue';
export const useAuth = () => {
const context = useContext(AuthContext);
if (context === undefined) {
throw new Error('useAuth must be used within an AuthProvider');
}
return context;
};