import { useContext } from "react"; import AuthContext from "../context/AuthProvider"; interface loginInfo { username: string; isLoggedIn: boolean; } const useAuth = () => { return useContext(AuthContext); }; export default useAuth;