5 lines
223 B
JavaScript
5 lines
223 B
JavaScript
import { useAuth as useAuthContext } from '../contexts/AuthContext';
|
|
|
|
// Re-export the useAuth hook from the context
|
|
// This allows for easier imports and potential future enhancements
|
|
export const useAuth = useAuthContext; |