11 lines
276 B
JavaScript
11 lines
276 B
JavaScript
import { useContext } from "react";
|
|
import { AuthContext } from "../context/AuthContext";
|
|
|
|
export const useAuth = () => {
|
|
const context = useContext(AuthContext);
|
|
if (!context) {
|
|
throw new Error("useAuth must be used within an AuthProvider");
|
|
}
|
|
return context;
|
|
};
|