import { createContext } from "react"; import type { ChatStore } from "../types"; export const ChatContext = createContext(null);