import { useContext } from 'react'; import { AuthContext } from './authContext'; export const useAuth = () => useContext(AuthContext);