keepme / src /hooks /useAuth.ts
narinder1231's picture
Add AuthContext and AuthProvider for authentication state management
2efe57e
raw
history blame contribute delete
277 Bytes
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;
};