import { useContext } from "react"; import { ChatContext } from "../context/ChatContext"; export function useChat() { const context = useContext(ChatContext); if (!context) { throw new Error("useChat must be used within a ChatProvider"); } return context; }