commerce/hooks/use-auth.ts
2024-06-21 11:50:58 +03:00

12 lines
289 B
TypeScript

import AuthContext from 'contexts/auth-context';
import { useContext } from 'react';
export default function useAuth() {
const context = useContext(AuthContext);
if (context === undefined) {
throw new Error('useAuth must be used within an AuthProvider');
}
return context;
}