// Dependencies import React from 'react'; import { AuthContext, AuthContextType } from '../../components/ChatProvider'; export function useAuth(): AuthContextType { return React.useContext(AuthContext); } export default useAuth;