mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 12:47:50 +00:00
12 lines
289 B
TypeScript
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;
|
|
}
|