import { createContext, Dispatch } from "react"; import { Action } from "../types"; const Dispatch = createContext>(null); export default Dispatch;