import { Dispatch, SetStateAction, useContext, createContext } from "react"; /** * ========================= * DialogContext * ========================= */ export interface IDialogContext { opened: boolean; } export const initialDialogContext: IDialogContext = { opened: false }; export const DialogContext = createContext< [IDialogContext, Dispatch>] >([ initialDialogContext, () => { if (process.env.NODE_ENV && process.env.NODE_ENV === "development") { console.warn( "It seems like you're using DialogContext outside of a provider.", ); } }, ]); export const useDialogContext = () => useContext(DialogContext);