import { createContext } from "react"; import type { TModalContext } from "../config/types"; export const ModalContext = createContext({ id: "", plugin: null, cfg: {}, getCN: () => "", headerSlot: null, footerSlot: null, titleSlot: null, });