File size: 285 Bytes
81ff144
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { useContext } from 'react';
import { AuthContext } from './authContextValue';

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