import { useContext } from "react" import AuthContext from "./auth-provider" function useAuth() { return useContext(AuthContext); } export default useAuth;