1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-14 13:47:49 +00:00
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;
}