import { createContext } from "react"; export type Update = { topic: string; payload: unknown; retain: boolean; }; export type WsSend = (update: Update) => void; export const WsSendContext = createContext(null);