import { createContext } from "react"; interface GlobalActions { undo: () => void; redo: () => void; doHighlight: {[key:string]: () => void}; } export const CommandContext = createContext(null);